Skip to content

Commit 27e356b

Browse files
committed
fi
1 parent 6f808e3 commit 27e356b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/check_export.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ jobs:
7575
7676
- name: Check for DeprecationWarning in logs
7777
run: |
78-
if (grep -i "DeprecationWarning:" export_logs.txt) ; then
79-
echo "Found a Deprecation warning, please fix."
80-
exit 1
81-
else
82-
echo "No deprecated code, all good."
83-
fi
78+
if grep -iq "DeprecationWarning:" export_logs.txt; then
79+
echo "Found a Deprecation warning, please fix."
80+
exit 1
81+
else
82+
echo "No deprecated code, all good."
83+
fi

0 commit comments

Comments
 (0)