Skip to content

Commit

Permalink
Seems that what I read about caret (^) to continue command to next
Browse files Browse the repository at this point in the history
line under Windows batch instead of backquote was wrong.
Switching back to backquote.
  • Loading branch information
BrunoLevy committed Dec 17, 2022
1 parent 4fbf437 commit 2bf2f6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,13 @@ jobs:
- name: Build (Windows)
if: runner.os == 'Windows'
run: |
cmake --build build/Windows --config ${{ matrix.config }} ^
cmake --build build/Windows --config ${{ matrix.config }} `
| tee -filepath build_log.txt
- name: Tests (Windows)
if: runner.os == 'Windows'
run: |
build/Windows/tests/runpybot.bat ^
build/Windows/tests/runpybot.bat `
--config=${{ matrix.config }} --include=smoke tests/
##############################################################################
Expand Down

0 comments on commit 2bf2f6a

Please sign in to comment.