Skip to content

Commit

Permalink
Fix dev.sh script. (#943)
Browse files Browse the repository at this point in the history
  • Loading branch information
xgalen authored and Ilya Radchenko committed Jun 10, 2016
1 parent 589c36f commit 7bc4678
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions dev.sh
Expand Up @@ -16,11 +16,14 @@ BASE="git@github.com:Strider-CD"

mkdir -p node_modules


for module in $DEPS
do
if [ $module == "strider-ecosystem-client" ]; then
module="ecosystem-client"
fi
repo="$module.git"
if [ ! -d ../$module ]; then
git clone $BASE/$module ../$module
git clone $BASE/$repo ../$module
fi
pushd ../$module
npm i
Expand Down

0 comments on commit 7bc4678

Please sign in to comment.