We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7abe2db commit c4bd1cbCopy full SHA for c4bd1cb
1 file changed
.github/workflows/build-and-release.yml
@@ -391,15 +391,15 @@ jobs:
391
if [ -f "./OpenCryptUITest.exe" ]; then
392
chmod +x ./OpenCryptUITest.exe
393
# Create a Windows-specific run_tests.bat script
394
- cat > run_tests.bat << EOF
+ cat > run_tests.bat << 'EOFMARKER'
395
@echo off
396
:: Set Qt logging rules to disable Qt internal categories
397
set QT_LOGGING_RULES=qt.*=false
398
-set QT_MESSAGE_PATTERN=[%{type}] %{message}
+set QT_MESSAGE_PATTERN=[%%{type}] %%{message}
399
400
:: Run the test with filtering
401
.\OpenCryptUITest.exe %*
402
-EOF
+EOFMARKER
403
chmod +x run_tests.bat
404
405
# Run the tests using our script
0 commit comments