Skip to content

Commit c986fe5

Browse files
committed
Created more of a turnkey scripting method to create bundles. Windows is still screwed up and requires manual intervention.
1 parent 2699ac2 commit c986fe5

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

coder-apps/install_all.cmd

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,7 @@ echo "Installing common files"
1515
call install_common.cmd %base%
1616

1717
echo "Preparing dependent libraries"
18-
cd %base%
19-
npm install
18+
cd %base%
19+
20+
REM Note this isn't going to work because npm isn't installed
21+
REM node\npm install

coder-apps/install_all.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ mkdir -p $base
2121
cp -r ../coder-base/* $base/
2222
./install_common.sh $base
2323

24+
## Using the base folder's copy of npm perform the necessary library pulls.
2425
echo "Preparing dependent libraries"
2526
cd $base
26-
npm install
27+
./node/bin/npm install
2728

0 commit comments

Comments
 (0)