-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(linux): use executableName as specified and do not lowercase it
Close #1291
- Loading branch information
Showing
8 changed files
with
111 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`invalid main in the app package.json (custom asar) 1`] = `"Application entry file \\"main.js\\" in the \\"<path>/app.asar\\" does not exist. Seems like a wrong configuration."`; | ||
exports[`invalid main in the app package.json (no asar) 1`] = `"Application entry file \\"main.js\\" does not exist. Seems like a wrong configuration."`; | ||
exports[`invalid main in the app package.json 1`] = `"Application entry file \\"main.js\\" in the \\"<path>/app.asar\\" does not exist. Seems like a wrong configuration."`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`arm deb 1`] = ` | ||
Array [ | ||
"TestApp_1.1.0_armv7l.deb", | ||
] | ||
`; | ||
|
||
exports[`custom depends 1`] = ` | ||
"[Desktop Entry] | ||
Name=Test App ßW | ||
Comment=Test Application (test quite “ #378) | ||
Exec=\\"/opt/Test App ßW/Boo\\" | ||
Terminal=false | ||
Type=Application | ||
Icon=Boo | ||
Categories=Development; | ||
" | ||
`; | ||
|
||
exports[`deb 1`] = ` | ||
Array [ | ||
"TestApp_1.1.0_amd64.deb", | ||
] | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`rpm and tar.gz 1`] = ` | ||
Array [ | ||
"TestApp-1.1.0.rpm", | ||
"TestApp-1.1.0.tar.gz", | ||
] | ||
`; | ||
|
||
exports[`targets 1`] = ` | ||
Array [ | ||
"TestApp-1.1.0.7z", | ||
"TestApp-1.1.0.freebsd", | ||
"TestApp-1.1.0.pacman", | ||
"TestApp-1.1.0.sh", | ||
"TestApp-1.1.0.zip", | ||
] | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`tar 1`] = ` | ||
Array [ | ||
"TestApp-1.1.0.tar.bz2", | ||
"TestApp-1.1.0.tar.lz", | ||
"TestApp-1.1.0.tar.xz", | ||
] | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`AppImage - default icon, custom executable and custom desktop 1`] = ` | ||
"[Desktop Entry] | ||
Name=Test App ßW | ||
Comment=Test Application (test quite “ #378) | ||
Exec=AppRun | ||
Terminal=true | ||
Type=Application | ||
Icon=Foo | ||
Foo=bar | ||
Categories=Development; | ||
" | ||
`; | ||
|
||
exports[`AppImage 1`] = ` | ||
Array [ | ||
"TestApp-1.1.0-x86_64.AppImage", | ||
] | ||
`; | ||
|
||
exports[`icons from ICNS 1`] = ` | ||
Array [ | ||
"TestApp-1.1.0-x86_64.AppImage", | ||
] | ||
`; | ||
|
||
exports[`no-author-email 1`] = ` | ||
"Please specify author 'email' in the application package.json | ||
See https://docs.npmjs.com/files/package.json#people-fields-author-contributors | ||
It is required to set Linux .deb package maintainer. Or you can set maintainer in the custom linux options. | ||
(see https://github.com/electron-userland/electron-builder#distributable-format-configuration). | ||
" | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`snap 1`] = ` | ||
Array [ | ||
"sep_1.1.0_amd64.snap", | ||
] | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters