diff options
author | 2017-12-21 09:34:59 +0100 | |
---|---|---|
committer | 2017-12-21 09:36:45 +0100 | |
commit | fd662f2115fd91d51c79649bdb5163cb46e6e5d5 (patch) | |
tree | f260933e94af31834317c8e155af93620c841e43 /INSTALL | |
parent | 459759a6b46cd2f1d656e932de3f07f6939d55fa (diff) |
Added missing -y option when installing nodejs.
Change-Id: If73efcb0754b5efd6763ec2a4c71c1907b2c2d02
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL/tasks.d/50_sdk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/INSTALL/tasks.d/50_sdk b/INSTALL/tasks.d/50_sdk index 1f60edd..1985b14 100644 --- a/INSTALL/tasks.d/50_sdk +++ b/INSTALL/tasks.d/50_sdk @@ -9,7 +9,7 @@ done # install node.js and tools (npm, gulp, bower) if needed if [[ -z $(which node) ]]; then curl -sL https://deb.nodesource.com/setup_6.x | bash - - apt-get install nodejs + apt-get install -y nodejs # issue SPEC-979 # this install fails with timeout for unknown reason - let's comment it #npm install --global gulp bower |