fix for #918, use OSX stat, not brew's gnu version(#920)

pull/923/head
Josh Rabinowitz 2 years ago committed by GitHub
parent 905a56cd26
commit ac0f720a39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -32,7 +32,8 @@ function __get_octal_perms_osx {
local filename
filename=$1
local perms
perms=$(stat -f "%04OLp" "$filename")
# we use /usr/bin/stat in case there's another stat available from brew. See #918
perms=$(/usr/bin/stat -f "%04OLp" "$filename")
# see _git_secret_tools_freebsd.sh for more about stat's format string
echo "$perms"
}

Loading…
Cancel
Save