Skip to content

Commit e4ebd4a

Browse files
committed
Fixed CommandLineTest for windows
1 parent 647a1b0 commit e4ebd4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/test/processing/app/CommandLineTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public void findBuildPaths() throws Exception {
5959
arduinoPath = new File(buildPath, "build/linux/work/arduino");
6060
}
6161
if (OSUtils.isWindows()) {
62-
arduinoPath = new File(buildPath, "build/windows/work/arduino");
62+
arduinoPath = new File(buildPath, "build/windows/work/arduino.exe");
6363
}
6464
if (OSUtils.isMacOS()) {
6565
arduinoPath = new File(buildPath,

0 commit comments

Comments
 (0)