Skip to content

Commit 1c71a25

Browse files
committed
wonky
1 parent ea125a8 commit 1c71a25

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/actions/build-gcc/action.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,12 @@ runs:
7474
run: |
7575
cd gccrs-build
7676
echo "Before"
77-
grep 'warning: ' log | grep rust | sort > log_warnings
77+
if grep 'warning: ' log | grep rust | sort > log_warnings; then
78+
echo yes
79+
else
80+
echo no
81+
fi
82+
7883
echo "After"
7984
8085
if diff -U0 ../.github/${{ inputs.warning_file }} log_warnings; then

0 commit comments

Comments
 (0)