installDeps.sh: Wrap long lines
This commit is contained in:
parent
42e59ff2cd
commit
8b89cb3f6f
1 changed files with 4 additions and 2 deletions
|
@ -15,10 +15,12 @@ is_cmd node || fatal "Please install node.js ( https://nodejs.org )"
|
||||||
is_cmd npm || fatal "Please install npm ( https://npmjs.org )"
|
is_cmd npm || fatal "Please install npm ( https://npmjs.org )"
|
||||||
|
|
||||||
# Check npm version
|
# Check npm version
|
||||||
require_minimal_version "npm" $(get_program_version "npm") "$REQUIRED_NPM_MAJOR" "$REQUIRED_NPM_MINOR"
|
require_minimal_version "npm" $(get_program_version "npm") \
|
||||||
|
"$REQUIRED_NPM_MAJOR" "$REQUIRED_NPM_MINOR"
|
||||||
|
|
||||||
# Check node version
|
# Check node version
|
||||||
require_minimal_version "nodejs" $(get_program_version "node") "$REQUIRED_NODE_MAJOR" "$REQUIRED_NODE_MINOR"
|
require_minimal_version "nodejs" $(get_program_version "node") \
|
||||||
|
"$REQUIRED_NODE_MAJOR" "$REQUIRED_NODE_MINOR"
|
||||||
|
|
||||||
# Get the name of the settings file
|
# Get the name of the settings file
|
||||||
settings="settings.json"
|
settings="settings.json"
|
||||||
|
|
Loading…
Reference in a new issue