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 2699ac2 commit c986fe5Copy full SHA for c986fe5
coder-apps/install_all.cmd
@@ -15,5 +15,7 @@ echo "Installing common files"
15
call install_common.cmd %base%
16
17
echo "Preparing dependent libraries"
18
- cd %base%
19
- npm install
+cd %base%
+
20
+REM Note this isn't going to work because npm isn't installed
21
+REM node\npm install
coder-apps/install_all.sh
@@ -21,7 +21,8 @@ mkdir -p $base
cp -r ../coder-base/* $base/
22
./install_common.sh $base
23
24
+## Using the base folder's copy of npm perform the necessary library pulls.
25
26
cd $base
-npm install
27
+./node/bin/npm install
28
0 commit comments