Skip to content

Commit

Permalink
fix: tweaked editor launch scripts commands for windows workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Casqade committed Apr 16, 2024
1 parent b8f012f commit 49531d9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/windows-build-msvc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ jobs:
- name: Create editor launch script
if: matrix.shared_libs_enabled == 'OFF'
run: echo start ./CasqadiumApp.exe --editor > ${{ steps.strings.outputs.build-output-dir }}\bin\demo-audio\${{ matrix.build_type }}\CasqadiumEditor.bat
run: |
cmd /c echo start .\demo-audio.exe --editor > ${{ steps.strings.outputs.build-output-dir }}\bin\demo-audio\${{ matrix.build_type }}\demo-audio-editor.bat
- name: Upload Build Artifact
if: matrix.shared_libs_enabled == 'OFF'
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/windows-build-msys2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ jobs:
- name: Create editor launch script
if: matrix.shared_libs_enabled == 'OFF'
run: echo start ./CasqadiumApp.exe --editor > ${{ steps.strings.outputs.build-output-dir }}\bin\demo-audio\CasqadiumEditor.bat
run: |
echo start .\demo-audio.exe --editor > ${{ steps.strings.outputs.build-output-dir }}\bin\demo-audio\demo-audio-editor.bat
- name: Upload Build Artifact
if: matrix.shared_libs_enabled == 'OFF'
Expand Down

0 comments on commit 49531d9

Please sign in to comment.