Fix command variables not being set at all.
parent
2100cbdf1f
commit
7508a7599f
|
@ -5,6 +5,8 @@ if [ "$(uname -s)" = "Darwin" ]; then
|
|||
if ! command -v "${CUT}" >/dev/null 2>&1; then
|
||||
CUT="cut"
|
||||
fi
|
||||
else
|
||||
CUT="cut"
|
||||
fi
|
||||
|
||||
file_changed() {
|
||||
|
|
|
@ -5,6 +5,8 @@ if [ "$(uname -s)" = "Darwin" ]; then
|
|||
if ! command -v "${READLINK}" >/dev/null 2>&1; then
|
||||
READLINK="readlink"
|
||||
fi
|
||||
else
|
||||
READLINK="readlink"
|
||||
fi
|
||||
|
||||
install_files() {
|
||||
|
|
Loading…
Reference in New Issue