macOS: Fix a sanity check.

Change-Id: I1ae61bcc70f5994661b88d6a3c1a93e038b6b6cf
Reviewed-on: https://code.wireshark.org/review/36199
Reviewed-by: Gerald Combs <gerald@wireshark.org>
This commit is contained in:
Gerald Combs 2020-02-26 13:51:49 -08:00
parent 47bd34873b
commit 574aa22870
1 changed files with 1 additions and 1 deletions

View File

@ -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