Skip to content

Commit

Permalink
fix(tests): make sure the special variable in script are quoted to ma…
Browse files Browse the repository at this point in the history
…ke string comparison work
  • Loading branch information
paambaati committed May 6, 2023
1 parent 4b48851 commit c796f65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/fixtures/dummy-cc-reporter-after-build-error.bat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
:: Dummy shell script that exits with a non-zero code when the argument 'after-build' is given.
@echo off
IF %* == "after-build --exit-code 0" (
IF "%*" == "after-build --exit-code 0" (
EXIT /b 69
) ELSE (
:: `CALL` is a no-op.
Expand Down

0 comments on commit c796f65

Please sign in to comment.