Skip to content

Commit 8049b6e

Browse files
committed
Merge pull request #4395 from fumiyas/patch-1
Use "$@" instead of bare $@ to protect arguments
2 parents ff13b30 + ad65e53 commit 8049b6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/shared/manpage.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ afterwards:
289289
#!/bin/bash
290290
Xvfb :1 -nolisten tcp -screen :1 1280x800x24 &
291291
xvfb="$!"
292-
DISPLAY=:1 arduino $@
292+
DISPLAY=:1 arduino "$@"
293293
kill -9 $xvfb
294294
295295
Save the script as *arduino-headless* and run it with the options described above.

0 commit comments

Comments
 (0)