Fix silencing.

master
Icedream 2018-07-18 09:19:23 +02:00
parent bb96653bee
commit 5e33a3783a
Signed by: icedream
GPG Key ID: 1573F6D8EFE4D0CF
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
#!/bin/sh -e #!/bin/sh -e
CUT="gcut" CUT="gcut"
if ! command -v "${CUT}" 2>&1; then if ! command -v "${CUT}" >/dev/null 2>&1; then
CUT="cut" CUT="cut"
fi fi

View File

@ -1,7 +1,7 @@
#!/bin/sh -e #!/bin/sh -e
READLINK="greadlink" READLINK="greadlink"
if ! command -v "${READLINK}" 2>&1; then if ! command -v "${READLINK}" >/dev/null 2>&1; then
READLINK="readlink" READLINK="readlink"
fi fi