Skip to content

Commit a22fd51

Browse files
committed
Small fix to processing-java generation
Related to #3996. Now it doesn't give an error when there is quotation in the command line args. Related comments: #3996 (comment) #3996 (comment)
1 parent a272fa8 commit a22fd51

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/src/processing/app/tools/InstallCommander.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public void run() {
9191
"OPTION_FOR_HEADLESS_RUN=\"\"\n" +
9292
"for ARG in \"$@\"\n" +
9393
"do\n" +
94-
" if [ $ARG = \"--build\" ]; then\n" +
94+
" if [ \"$ARG\" = \"--build\" ]; then\n" +
9595
" OPTION_FOR_HEADLESS_RUN=\"-Djava.awt.headless=true\"\n" +
9696
" fi\n" +
9797
"done\n\n");

0 commit comments

Comments
 (0)