Fix default script

This commit is contained in:
Reinhard Pointner 2016-03-30 16:43:42 +00:00
parent 2d9d388c56
commit c93264c836
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ public class GroovyPad extends JFrame {
File pad = ApplicationFolder.AppData.resolve(name); File pad = ApplicationFolder.AppData.resolve(name);
if (!pad.exists()) { if (!pad.exists()) {
// use this default value so people can easily submit bug reports with fn:sysinfo logs // use this default value so people can easily submit bug reports with fn:sysinfo logs
ScriptShellMethods.saveAs("runScript 'fn:sysinfo'", pad); ScriptShellMethods.saveAs("runScript 'sysinfo'", pad);
} }
return FileLocation.create(pad); return FileLocation.create(pad);
} }