Skip to content
This repository was archived by the owner on Jun 26, 2020. It is now read-only.

Commit f29fa22

Browse files
authored
Merge pull request #46 from queued37/patch-1
Resolve -b option collision
2 parents c89ced3 + c8ab218 commit f29fa22

File tree

1 file changed

+1
-1
lines changed
  • packages/client-app/src/browser

1 file changed

+1
-1
lines changed

packages/client-app/src/browser/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const declareOptions = (argv) => {
6262
const options = optimist(argv);
6363
options.usage("Nylas Mail v" + (app.getVersion()) + "\n\nUsage: nylas-mail [options]\n\nRun Nylas Mail: The open source extensible email client\n\n`nylas-mail --dev` to start the client in dev mode.\n\n`n1 --test` to run unit tests.");
6464
options.alias('d', 'dev').boolean('d').describe('d', 'Run in development mode.');
65-
options.alias('b', 'benchmark').boolean('b').describe('b', 'Run in benchmark mode.');
65+
options.boolean('benchmark').describe('benchmark', 'Run in benchmark mode.');
6666
options.alias('t', 'test').boolean('t').describe('t', 'Run the specified specs and exit with error code on failures.');
6767
options.boolean('safe').describe('safe', 'Do not load packages from ~/.nylas-mail/packages or ~/.nylas/dev/packages.');
6868
options.alias('h', 'help').boolean('h').describe('h', 'Print this usage message.');

0 commit comments

Comments
 (0)