From a09ae9fe4ed703e3dc09cc735215df7ac5d93c5a Mon Sep 17 00:00:00 2001 From: Ronan Jouchet Date: Sun, 16 Apr 2017 12:19:03 -0400 Subject: [PATCH] CLI help: clarify --inject supports both JS & CSS (#340) --- src/cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli.js b/src/cli.js index dda1ded..c58fdae 100755 --- a/src/cli.js +++ b/src/cli.js @@ -43,7 +43,7 @@ if (require.main === module) { .option('--insecure', 'enable loading of insecure content, defaults to false') .option('--flash', 'if flash should be enabled') .option('--flash-path ', 'path to Chrome flash plugin, find it in `Chrome://plugins`') - .option('--inject ', 'path to a file to be injected', collect, []) + .option('--inject ', 'path to a CSS/JS file to be injected', collect, []) .option('--full-screen', 'if the app should always be started in full screen') .option('--maximize', 'if the app should always be started maximized') .option('--hide-window-frame', 'disable window frame and controls')