Fix use the correct reference.

it was used file, wich was a null pointer, use sketchFile instead.
This commit is contained in:
Geronimo Bareiro 2015-02-26 03:03:25 -03:00
parent 0ae9e3a0d0
commit 2dbe0059c5
1 changed files with 1 additions and 1 deletions

View File

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