We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b031aba commit 2c00aa0Copy full SHA for 2c00aa0
.github/workflows/pkg.yml
@@ -850,7 +850,7 @@ jobs:
850
centos)
851
sg lxd -c "lxc exec testcon -- yum remove -y ${{ matrix.pkg }}" 2>&1 | tee remove.log
852
# yum remove exits with code 0 even if scriptlets fail, so look for some sign of failure
853
- ! grep -qiE '(err|warn|fail)' remove.log
+ ! grep -qE '(err|warn|fail)' remove.log
854
;;
855
esac
856
@@ -863,7 +863,7 @@ jobs:
863
864
sg lxd -c "lxc exec testcon -- yum install -y /tmp/${PKG_FILE}" 2>&1 | tee reinstall.log
865
866
- ! grep -qiE '(err|warn|fail)' reinstall.log
+ ! grep -qE '(err|warn|fail)' reinstall.log
867
868
869
0 commit comments