We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71cdeeb commit 687c27fCopy full SHA for 687c27f
app/test/processing/app/CommandLineTest.java
@@ -83,6 +83,8 @@ public Process runArduino(boolean output, boolean success, File wd, String[] ext
83
args.add(arduinoPath.getAbsolutePath());
84
args.addAll(Arrays.asList(extraArgs));
85
86
+ System.out.println("Running: " + String.join(" ", args));
87
+
88
Process pr = rt.exec(args.toArray(new String[0]), null, wd);
89
if (output) {
90
IOUtils.copy(pr.getInputStream(), System.out);
0 commit comments