1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-30 16:24:09 +03:00

Moving sketch compilation during upload from applet/ sub-directory to a temporary folder.

This commit is contained in:
David A. Mellis
2009-12-23 00:00:57 +00:00
parent c82a43abde
commit 2a3a8b1c4f

View File

@ -1393,7 +1393,7 @@ public class Sketch {
protected boolean exportApplet(boolean verbose) throws Exception {
return exportApplet(new File(folder, "applet").getAbsolutePath(), verbose);
return exportApplet(tempBuildFolder.getAbsolutePath(), verbose);
}