We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfe0a7e commit 14755f2Copy full SHA for 14755f2
1 file changed
utils/ruleset-coverage-whitelist-cleanup.sh
@@ -21,10 +21,10 @@ for file in $WLISTFILES; do
21
# Remove those that no longer exist
22
if [ ! -f $file ]; then
23
sed -i "/ $file/d" $WLIST
24
- echo "$file no longer exists"
+ echo >&2 "Removed $file: file no longer exists"
25
# Remove those whose hashes no longer match
26
elif ! grep -q $(sha256sum $file) $WLIST; then
27
28
- echo "$file no longer matches the whitelist hash"
+ echo >&2 "Removed $file: file no longer matches the whitelist hash"
29
fi
30
done
0 commit comments