From 0eacbed16262d34a1c774d28a3e5ed93cb7f126b Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Fri, 17 Oct 2014 17:18:22 -0600 Subject: [PATCH] Document the resource-path option to atom executable --- src/browser/main.coffee | 1 + 1 file changed, 1 insertion(+) diff --git a/src/browser/main.coffee b/src/browser/main.coffee index f9afb0c30..1fae16ea9 100644 --- a/src/browser/main.coffee +++ b/src/browser/main.coffee @@ -80,6 +80,7 @@ parseCommandLine = -> opened or a new window if it hasn't. """ options.alias('d', 'dev').boolean('d').describe('d', 'Run in development mode.') + options.alias('r', 'resource-path').string('r').describe('r', 'Set the path from which Atom loads internal resources and enable dev-mode.') options.alias('f', 'foreground').boolean('f').describe('f', 'Keep the browser process in the foreground.') options.alias('h', 'help').boolean('h').describe('h', 'Print this usage message.') options.alias('l', 'log-file').string('l').describe('l', 'Log all output to file.')