Commit 2ede766c authored by carlosperate's avatar carlosperate

Electron: Rename electron executable to ardublockly

parent 7c49203c
...@@ -4,7 +4,7 @@ Type=Application ...@@ -4,7 +4,7 @@ Type=Application
Encoding=UTF-8 Encoding=UTF-8
Name={{productName}} Name={{productName}}
Comment={{description}} Comment={{description}}
Exec=/opt/{{name}}/electron Exec=/opt/{{name}}/{{name}}
Icon=/opt/{{name}}/icon.png Icon=/opt/{{name}}/icon.png
Terminal=false Terminal=false
Categories=Application; Categories=Application;
...@@ -62,6 +62,9 @@ var finalize = function () { ...@@ -62,6 +62,9 @@ var finalize = function () {
// Copy icon // Copy icon
projectDir.copy('resources/icon.png', readyAppDir.path('icon.png')); projectDir.copy('resources/icon.png', readyAppDir.path('icon.png'));
// Rename executable
readyAppDir.rename('electron', manifest.name);
return Q(); return Q();
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment