aboutsummaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2020-02-26 13:51:49 -0800
committerGerald Combs <gerald@wireshark.org>2020-02-26 21:52:21 +0000
commit574aa22870067054667a09c2fc36b3fa4495cb92 (patch)
tree30aeaacb31150aca49cd8de7e05a02f82fb1a848 /packaging
parent47bd34873b68cfb4d90af5966af446278227692e (diff)
macOS: Fix a sanity check.
Change-Id: I1ae61bcc70f5994661b88d6a3c1a93e038b6b6cf Reviewed-on: https://code.wireshark.org/review/36199 Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'packaging')
-rwxr-xr-xpackaging/macosx/osx-app.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/macosx/osx-app.sh.in b/packaging/macosx/osx-app.sh.in
index bdf40b6c88..94b4db0a31 100755
--- a/packaging/macosx/osx-app.sh.in
+++ b/packaging/macosx/osx-app.sh.in
@@ -564,7 +564,7 @@ else
fi
# File permission sanity check.
-if ! badperms=$( find "$bundle" ! -perm -0444 -exec ls -l "{}" + | grep . ) ; then
+if badperms=$( find "$bundle" ! -perm -0444 -exec ls -l "{}" + | grep . ) ; then
echo "Found files with restrictive permissions:"
echo "$badperms"
exit 1