Skip to content

Commit

Permalink
Add missing quotes to startup scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
jpnurmi authored and lordofhyphens committed Feb 10, 2019
1 parent 9f2dfdd commit 70946af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package/linux/startup_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
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" $@
exec "$DIR/perl-local" -I"$DIR/local-lib/lib/perl5" "$DIR/slic3r.pl" "$@"
2 changes: 1 addition & 1 deletion package/osx/startup_script.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash

DIR=$(dirname "$0")
exec "$DIR/perl-local" -I"$DIR/local-lib/lib/perl5" "$DIR/slic3r.pl" $@
exec "$DIR/perl-local" -I"$DIR/local-lib/lib/perl5" "$DIR/slic3r.pl" "$@"

0 comments on commit 70946af

Please sign in to comment.