1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-16 11:21:18 +03:00

Merge pull request #2700 from gerito1/fix-issue-2604

Fix: Use the correct reference.
This commit is contained in:
Federico Fissore
2015-02-27 12:10:19 +01:00

View File

@ -2212,7 +2212,7 @@ public class Editor extends JFrame implements RunnerListener {
// copy the sketch inside // copy the sketch inside
File properPdeFile = new File(properFolder, sketchFile.getName()); File properPdeFile = new File(properFolder, sketchFile.getName());
try { try {
Base.copyFile(file, properPdeFile); Base.copyFile(sketchFile, properPdeFile);
} catch (IOException e) { } catch (IOException e) {
Base.showWarning(_("Error"), _("Could not copy to a proper location."), e); Base.showWarning(_("Error"), _("Could not copy to a proper location."), e);
return false; return false;