fix for #918, which picked up gnu stat from brew

pull/920/head
Josh Rabinowitz 2 years ago
parent 905a56cd26
commit 590bd60272

@ -32,7 +32,8 @@ function __get_octal_perms_osx {
local filename local filename
filename=$1 filename=$1
local perms 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 # see _git_secret_tools_freebsd.sh for more about stat's format string
echo "$perms" echo "$perms"
} }

Loading…
Cancel
Save