We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c31579 commit 0972983Copy full SHA for 0972983
src/arduino/arduino.ts
@@ -149,6 +149,9 @@ export class ArduinoApp {
149
150
args.push("--pref", `build.path=${outputPath}`);
151
arduinoChannel.info(`Please see the build logs in Output path: ${outputPath}`);
152
+
153
+ fs.unlinkSync(path.join(outputPath, "build.options.json"));
154
+ util.rmdirRecursivelySync(path.join(outputPath, "sketch"));
155
} else {
156
const msg = "Output path is not specified. Unable to reuse previously compiled files. Upload could be slow. See README.";
157
arduinoChannel.warning(msg);
0 commit comments