We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8aca156 commit f4ac057Copy full SHA for f4ac057
coder-apps/install_all.cmd
@@ -13,3 +13,7 @@ xcopy ..\common-base\*.* %base% /E
13
14
echo "Installing common files"
15
call install_common.cmd %base%
16
+
17
+echo "Preparing dependent libraries"
18
+ cd %base%
19
+ npm install
coder-apps/install_all.sh
@@ -18,5 +18,10 @@ fi
base=$1
20
mkdir -p $base
21
-cp ../coder-base/* $base/
+cp -r ../coder-base/* $base/
22
./install_common.sh $base
23
24
25
+cd $base
26
+npm install
27
0 commit comments