Use full path for MacOS binaries that conflict with coreutils

This commit is contained in:
Scott McLeod 2019-11-20 14:38:58 -05:00
parent 58305b25c9
commit 00bb71562b
No known key found for this signature in database
GPG Key ID: 9C5566AB07C8E593

View File

@ -7,8 +7,8 @@ mkdir -p ${CACHE_DIR}
case $(uname -s) in
Darwin) OS="mac"
SHA256SUM="gsha256sum"
STAT="stat -f %c ${CACHE_DIR}/*"
TEMP_DIR=$(mktemp -dt asdf-java)
STAT="/usr/bin/stat -f %c ${CACHE_DIR}/*"
TEMP_DIR=$(/usr/bin/mktemp -dt asdf-java)
;;
Linux) OS="linux"
SHA256SUM="sha256sum"