Skip to content
This repository was archived by the owner on Jul 23, 2025. It is now read-only.

Commit c796f65

Browse files
committed
fix(tests): make sure the special variable in script are quoted to make string comparison work
1 parent 4b48851 commit c796f65

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/fixtures/dummy-cc-reporter-after-build-error.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
:: Dummy shell script that exits with a non-zero code when the argument 'after-build' is given.
22
@echo off
3-
IF %* == "after-build --exit-code 0" (
3+
IF "%*" == "after-build --exit-code 0" (
44
EXIT /b 69
55
) ELSE (
66
:: `CALL` is a no-op.

0 commit comments

Comments
 (0)