Skip to content

Commit

Permalink
slic3r#4635 Use readlink -f instead of readlink for startup script on…
Browse files Browse the repository at this point in the history
… Linux.
  • Loading branch information
lordofhyphens committed Dec 31, 2018
1 parent f0a2183 commit 6397d58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package/linux/startup_script.sh
Original file line number Diff line number Diff line change
@@ -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" $@

0 comments on commit 6397d58

Please sign in to comment.