Skip to content

Commit 8567975

Browse files
author
jantje
committed
tell make clean not to create an error when there are no files to delete
1 parent 0b449f8 commit 8567975

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

io.sloeber.core/src/io/sloeber/core/toolchain/ArduinoGnuMakefileGenerator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1078,7 +1078,7 @@ private StringBuffer addMacros() {
10781078
}
10791079
// JABA use del in windows and rm on all other oses
10801080
if (Platform.getOS().equals(Platform.OS_WIN32)) {
1081-
cleanCommand = "del ";
1081+
cleanCommand = "-del ";
10821082
}
10831083
buffer.append(cleanCommand).append( NEWLINE);
10841084
buffer.append(NEWLINE);

0 commit comments

Comments
 (0)