Skip to content

Commit 8255711

Browse files
committed
build - call mix commands in a cmd.
Previously the script appeared to halt after calling mix local.hex --force. With this new approach, all the mix commands get executed.
1 parent 81029b3 commit 8255711

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/win-prebuild.bat

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ forfiles /p gui\qt\lang /s /m *.ts /c "cmd /c %QT_INSTALL_LOCATION%\bin\lrelease
5555

5656
@echo Compiling Erlang/Elixir files...
5757
cd %~dp0\server\erlang\tau
58-
mix local.hex --force
59-
mix deps.get
60-
mix release
58+
cmd /c mix local.hex --force
59+
cmd /c mix deps.get
60+
cmd /c mix release
6161

6262
cd %~dp0\server\erlang\tau
6363
copy /Y src\tau.app.src .\ebin\tau.app

0 commit comments

Comments
 (0)