Skip to content

Commit

Permalink
fix equality test condition finally!
Browse files Browse the repository at this point in the history
  • Loading branch information
boozook committed Jun 27, 2024
1 parent 5a23013 commit 9733b79
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ jobs:
if: runner.os == 'Windows' && matrix.root-win-path
run: |
echo "env: $PLAYDATE_SDK_PATH == ${{ steps.installer.outputs.root }}"
${{ steps.installer.outputs.root == env.PLAYDATE_SDK_PATH }} && (echo "::error ::Env is eq output: PLAYDATE_SDK_PATH" && exit 1)
if ${{ steps.installer.outputs.root == env.PLAYDATE_SDK_PATH }}; then
echo "::error ::Env is eq output: PLAYDATE_SDK_PATH"
exit 1
fi
- name: $PATH
run: |
Expand Down

0 comments on commit 9733b79

Please sign in to comment.