mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
check for nvm presence before using, survive abscence
This commit is contained in:
parent
0009fabce4
commit
e591df91f5
1 changed files with 6 additions and 6 deletions
|
@ -4,12 +4,12 @@ grep 'name:' config/services.js | \
|
|||
sed 's/.*name: "\(.*\)",/\1/' | \
|
||||
while read service
|
||||
do
|
||||
pushd $service &&
|
||||
echo "Installing Service $service" &&
|
||||
echo ' installing Node' &&
|
||||
nvm install &&
|
||||
nvm use &&
|
||||
echo ' installing Dependencies' &&
|
||||
pushd $service
|
||||
echo "Installing Service $service"
|
||||
echo ' installing Node'
|
||||
type nvm && nvm install
|
||||
type nvm && nvm use
|
||||
echo ' installing Dependencies'
|
||||
npm install
|
||||
popd
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue