Skip to content

Commit 7d86142

Browse files
committed
QUOTES
1 parent dd3da21 commit 7d86142

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runtime/src/jycessing/mode/export/LinuxExport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ private void buildShellScript(final File destFolder, final boolean embedJava) th
9797
// We explicitly use "\n" because PrintWriter.println() uses the system line ending,
9898
// Which will confuse Linux if we're running from Windows.
9999
script.print("#!/bin/sh\n");
100-
script.print("APPDIR=\"$( cd $( dirname \"$0\" ) && pwd )\"\n");
100+
script.print("APPDIR=\"$( cd \"$( dirname \"$0\" )\" && pwd )\"\n");
101101

102102
if (embedJava) {
103103
script.print("JAVA=\"$APPDIR/java/bin/java\"\n");

0 commit comments

Comments
 (0)