Skip to content

Commit ffd35c5

Browse files
Fixing syntax for error checking.
1 parent 1438fa7 commit ffd35c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/clang-format-run-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ jobs:
5959

6060
- name: clang-format-run
6161
run: |
62-
set -e
62+
set +e
6363
# Don't return right away
6464
bash -e .github/workflows/clang-format-run.sh
6565
RETVAL=$?
66-
set +e
66+
set -e
6767
6868
if [[ $RETVAL -eq 0 ]]
6969
exit 0

0 commit comments

Comments
 (0)