Skip to content
This repository was archived by the owner on Aug 18, 2020. It is now read-only.

Commit 5186a82

Browse files
authored
This should fix all of our problems.
(atleast for me)
1 parent 1d07d17 commit 5186a82

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

install.bat

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ IF "%npm%"=="false" (
3434
)
3535
)
3636

37-
3837
CALL :check_folder chatoverflow https://github.com/codeoverflow-org/chatoverflow chatoverflow
3938
CALL :check_folder chatoverflow/api https://github.com/codeoverflow-org/chatoverflow-api chatoverflow/api
4039
CALL :check_folder chatoverflow/gui https://github.com/codeoverflow-org/chatoverflow-gui chatoverflow/gui
@@ -50,22 +49,22 @@ IF "%MISSING_REQUIREMENT%"=="true" (
5049
ECHO ! Or follow the guide at https://github.com/codeoverflow-org/chatoverflow/wiki/Installation
5150
) ELSE (
5251
ECHO * Found sbt.
53-
sbt ";update;fetch;update"
52+
CALL sbt ";update;fetch;update"
5453
)
5554

5655
cd gui/
5756

5857
ECHO * Installing GUI (this may take a while...)
5958

6059
IF "%yarn%"=="true" (
61-
yarn
60+
ECHO * Using yarn...
61+
CALL yarn
6262
) ELSE (
63-
npm install
63+
ECHO * Using npm...
64+
CALL npm install
6465
)
6566

6667
ECHO * Success! You can now open the project in IntelliJ (or whatever IDE you prefer)
67-
68-
6968
PAUSE
7069
exit /b
7170

0 commit comments

Comments
 (0)