Fix command variables not being set at all.

master
Icedream 2018-07-26 11:57:25 +02:00
parent 2100cbdf1f
commit 7508a7599f
Signed by: icedream
GPG Key ID: 1573F6D8EFE4D0CF
2 changed files with 4 additions and 0 deletions

View File

@ -5,6 +5,8 @@ if [ "$(uname -s)" = "Darwin" ]; then
if ! command -v "${CUT}" >/dev/null 2>&1; then if ! command -v "${CUT}" >/dev/null 2>&1; then
CUT="cut" CUT="cut"
fi fi
else
CUT="cut"
fi fi
file_changed() { file_changed() {

View File

@ -5,6 +5,8 @@ if [ "$(uname -s)" = "Darwin" ]; then
if ! command -v "${READLINK}" >/dev/null 2>&1; then if ! command -v "${READLINK}" >/dev/null 2>&1; then
READLINK="readlink" READLINK="readlink"
fi fi
else
READLINK="readlink"
fi fi
install_files() { install_files() {