setup-hooks/strip: silence 'File format not recognized' errors again

This got lost in e4d17dc558.
This commit is contained in:
Sandro Jäckel
2021-01-02 10:46:27 +01:00
parent a6f7ba3752
commit 03ba885fa2
+1 -1
View File
@@ -51,7 +51,7 @@ stripDirs() {
if [ -n "${dirs}" ]; then
header "stripping (with command $cmd and flags $stripFlags) in$dirs"
find $dirs -type f -exec $cmd $commonStripFlags $stripFlags '{}' \; #
find $dirs -type f -exec $cmd $commonStripFlags $stripFlags '{}' \; 2>/dev/null
stopNest
fi
}