Fix cut command detection.

master
Icedream 2018-07-18 00:28:37 +02:00
parent 17ea9cfd85
commit 809797d3a7
Signed by: icedream
GPG Key ID: 1573F6D8EFE4D0CF
1 changed files with 1 additions and 1 deletions

View File

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