Skip to content

Commit 116c555

Browse files
Fix line continuation in PowerShell (#344)
- The character "\" is valid in bash but triggers an error on Windows PowerShell - The error in GH actions was - Missing expression after unary operator '--'.
1 parent 302c16c commit 116c555

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/atfe_nightly_build_and_test.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -82,16 +82,10 @@ jobs:
8282
run: echo "$HOME/.local/bin" >> $GITHUB_PATH
8383

8484
- name: Apply llvm-project patches
85-
run: |
86-
python3 arm-software/embedded/cmake/patch_repo.py \
87-
--method apply \
88-
arm-software/embedded/patches/llvm-project
85+
run: python3 arm-software/embedded/cmake/patch_repo.py --method apply arm-software/embedded/patches/llvm-project
8986

9087
- name: Apply llvm-project-perf patches
91-
run: |
92-
python3 arm-software/embedded/cmake/patch_repo.py \
93-
--method apply \
94-
arm-software/embedded/patches/llvm-project-perf
88+
run: python3 arm-software/embedded/cmake/patch_repo.py --method apply arm-software/embedded/patches/llvm-project-perf
9589

9690
- name: Build ${{ matrix.build_script }}
9791
run: ./arm-software/embedded/scripts/${{ matrix.build_script }}

0 commit comments

Comments
 (0)