Skip to content

Commit 457881a

Browse files
committed
Fixed readlink error message
1 parent a1dd945 commit 457881a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

bin/.config.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ if [ "$unamestr" == 'FreeBSD' -o "$unamestr" == 'Darwin' ]; then
1717
fi
1818

1919
if [ -z "`which $READLINK`" ]; then
20-
echo '$READLINK not installed'
20+
echo "[ERROR] $READLINK not installed"
21+
echo " make sure coreutils are installed"
22+
echo " MacOS: brew install coreutils"
23+
exit 1
2124
fi
2225

2326
SCRIPT_DIR=$(dirname $($READLINK -f "$0"))

0 commit comments

Comments
 (0)