Skip to content

Commit 51e73be

Browse files
Run Windows Batch script in correct directory
1 parent bc08913 commit 51e73be

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
# Windows Build
1818
- name: "Build"
1919
if: matrix.os == 'windows-latest'
20-
run: cd scripts && ./build.bat
20+
run: ./scripts/build.bat
2121

2222
# macOS Build
2323
- name: "Build"

scripts/build.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
python -m pip install -r requirements.txt
2-
python -m PyInstaller --onefile --noconsole --clean --add-data "layout;layout" --add-data "api;api" --icon=layout\resources\logo.ico --collect-all "pyreadline3" --collect-all "sqlite3" --collect-all "Cryptodome" --collect-all "PIL" --name=3DS-RPC app.py
1+
python -m pip install -r requirements.txt || exit /b
2+
python -m PyInstaller --onefile --noconsole --clean --add-data "layout;layout" --add-data "api;api" --icon=layout\resources\logo.ico --collect-all "pyreadline3" --collect-all "sqlite3" --collect-all "Cryptodome" --collect-all "PIL" --name=3DS-RPC app.py || exit /b

0 commit comments

Comments
 (0)