Skip to content

Commit

Permalink
Fix non-Windows check
Browse files Browse the repository at this point in the history
  • Loading branch information
michaliskambi committed Nov 30, 2024
1 parent 7c30ae7 commit dc47003
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
if: ${{ matrix.runner == 'windows-latest' }}
run: echo "PATH=${PATH}:`cygpath --unix ${CASTLE_ENGINE_PATH}/tools/build-tool/`" >> $GITHUB_ENV
- name: Castle Game Engine - Env PATH (non-Windows)
if: ${{ ! matrix.runner == 'windows-latest' }}
if: ${{ matrix.runner != 'windows-latest' }}
run: echo "PATH=$PATH:$CASTLE_ENGINE_PATH/tools/build-tool/" >> $GITHUB_ENV
- name: Castle Game Engine - Build
run: cd $CASTLE_ENGINE_PATH/tools/build-tool/ && ./castle-engine_compile.sh
Expand Down

0 comments on commit dc47003

Please sign in to comment.