Skip to content

Commit f4ac057

Browse files
committed
Corrected copy commands and does npm install at the end of the base
setup.
1 parent 8aca156 commit f4ac057

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

coder-apps/install_all.cmd

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,7 @@ xcopy ..\common-base\*.* %base% /E
1313

1414
echo "Installing common files"
1515
call install_common.cmd %base%
16+
17+
echo "Preparing dependent libraries"
18+
cd %base%
19+
npm install

coder-apps/install_all.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,10 @@ fi
1818
base=$1
1919

2020
mkdir -p $base
21-
cp ../coder-base/* $base/
21+
cp -r ../coder-base/* $base/
2222
./install_common.sh $base
23+
24+
echo "Preparing dependent libraries"
25+
cd $base
26+
npm install
27+

0 commit comments

Comments
 (0)