Skip to content

Commit

Permalink
Merge pull request #849 from DG12/master
Browse files Browse the repository at this point in the history
Update install.sh to use /usr/bin/stat
  • Loading branch information
MikeMcQuaid authored May 18, 2024
2 parents 000e98f + 029184a commit 44c4db5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ then
fi
HOMEBREW_CACHE="${HOME}/Library/Caches/Homebrew"

STAT_PRINTF=("stat" "-f")
STAT_PRINTF=("/usr/bin/stat" "-f")
PERMISSION_FORMAT="%A"
CHOWN=("/usr/sbin/chown")
CHGRP=("/usr/bin/chgrp")
Expand All @@ -175,7 +175,7 @@ else
HOMEBREW_REPOSITORY="${HOMEBREW_PREFIX}/Homebrew"
HOMEBREW_CACHE="${HOME}/.cache/Homebrew"

STAT_PRINTF=("stat" "--printf")
STAT_PRINTF=("/usr/bin/stat" "--printf")
PERMISSION_FORMAT="%a"
CHOWN=("/bin/chown")
CHGRP=("/bin/chgrp")
Expand Down

0 comments on commit 44c4db5

Please sign in to comment.