replace grunt service initialisation with bash script
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
#! env bash
|
||||
|
||||
grep 'name:' config/services.js | \
|
||||
sed 's/.*name: "\(.*\)",/\1/' | \
|
||||
while read service
|
||||
do
|
||||
pushd $service &&
|
||||
nvm install &&
|
||||
nvm use &&
|
||||
npm install
|
||||
popd
|
||||
done
|
||||
Reference in New Issue
Block a user