Skip to content

Commit

Permalink
changes to startup
Browse files Browse the repository at this point in the history
  • Loading branch information
andremcguire committed Mar 15, 2019
1 parent e6bd334 commit e90367d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 12 deletions.
5 changes: 3 additions & 2 deletions start_linux.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
#!/bin/sh
npm install --prefix Excel_Addin

echo "Please provide your user ID:"

read userID

echo "Starting action logger with userID: $userID"

npm install --prefix Excel_Addin
npm install --prefix append_http

(npm start --prefix Excel_Addin & npm start $userID --prefix append_http)
14 changes: 4 additions & 10 deletions start_windows.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
set /p @userID="Please provide your user ID: "

echo "Starting action logger with userID: %@userID%"

cd Excel_Addin
call npm install
Expand All @@ -6,14 +9,5 @@ cd append_http
call npm install
cd ..


echo "Please provide your user ID:"

read userID

echo "Starting action logger with userID: $userID"


start npm start $userID --prefix append_http
start npm start %@userID% --prefix append_http
call npm start --prefix Excel_Addin

0 comments on commit e90367d

Please sign in to comment.