From 2ca1b6726517dfdc7c79505d07e2572a519c29c9 Mon Sep 17 00:00:00 2001 From: Paul-Louis NECH Date: Sat, 9 Dec 2017 21:01:28 +0100 Subject: [PATCH] Fix #496 - Recommend .png for --icon on all platforms, even macOS (PR #502) --- src/cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli.js b/src/cli.js index e093700..a471609 100755 --- a/src/cli.js +++ b/src/cli.js @@ -52,7 +52,7 @@ if (require.main === module) { .option('--no-overwrite', 'do not override output directory if it already exists, defaults to false') .option('-c, --conceal', 'packages the source code within your app into an archive, defaults to false, see http://electron.atom.io/docs/v0.36.0/tutorial/application-packaging/') .option('--counter', 'if the target app should use a persistant counter badge in the dock (OSX only), defaults to false') - .option('-i, --icon ', 'the icon file to use as the icon for the app (should be a .icns file on OSX, .png for Windows and Linux)') + .option('-i, --icon ', 'the icon file to use as the icon for the app (should be a .png)') .option('--width ', 'set window default width, defaults to 1280px', parseInt) .option('--height ', 'set window default height, defaults to 800px', parseInt) .option('--min-width ', 'set window minimum width, defaults to 0px', parseInt)