#4635 Use readlink -f instead of readlink for startup script on Linux.

This commit is contained in:
Joseph Lenox 2018-12-30 12:49:29 -06:00 committed by Joseph Lenox
parent f0a21833f7
commit 6397d58c7d

View File

@ -1,6 +1,6 @@
#!/bin/bash
BIN=$(readlink "$0")
BIN=$(readlink -f "$0")
DIR=$(dirname "$BIN")
export LD_LIBRARY_PATH="$DIR/bin"
exec "$DIR/perl-local" -I"$DIR/local-lib/lib/perl5" "$DIR/slic3r.pl" $@