We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f808e3 commit 27e356bCopy full SHA for 27e356b
.github/workflows/check_export.yml
@@ -75,9 +75,9 @@ jobs:
75
76
- name: Check for DeprecationWarning in logs
77
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
+ if grep -iq "DeprecationWarning:" export_logs.txt; then
+ echo "Found a Deprecation warning, please fix."
+ exit 1
+ else
+ echo "No deprecated code, all good."
+ fi
0 commit comments