Skip to content
This repository has been archived by the owner on Apr 3, 2022. It is now read-only.

Commit

Permalink
allow nodejs >= 4
Browse files Browse the repository at this point in the history
  • Loading branch information
rksm committed Jul 27, 2017
1 parent af4ed33 commit dac9d51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rksm/cloxp_installer/main.clj
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
[_]
(println "1. Checking dependencies...")
(assert-bin "Leiningen" "lein --version")
(assert-bin "node.js" "node --version" (fn [v] (let [{:keys [major]} (match-version v)] (= 4 major))) "v4.x")
(assert-bin "node.js" "node --version" (fn [v] (let [{:keys [major]} (match-version v)] (>= major 4))) "v4.x")
(assert-bin "npm" "npm --version")
(assert-bin "git" "git --version"))

Expand Down

0 comments on commit dac9d51

Please # to comment.