File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ var program = require('commander')
55program
66 . version ( '0.0.1' )
77 . option ( '-u, --username <username>' , 'Username to which this frame will be linked.' )
8- . option ( '-d, --domain <domain >' , 'The root domain (including port) at which the frame server is accessible. Defaults to localhost:8888.' )
8+ . option ( '-d, --dom <dom >' , 'The root domain (including port) at which the frame server is accessible. Defaults to localhost:8888.' )
99 . option ( '-c, --chromium' , 'If this flag is present, force the use chromium.' )
1010 . parse ( process . argv )
11-
11+
1212if ( ! program . username ) {
1313 console . log ( 'Username is required.' )
1414 program . outputHelp ( )
@@ -18,7 +18,7 @@ if (!program.username) {
1818}
1919
2020var username = program . username ,
21- root_domain = program . domain || "localhost:8888" ,
21+ root_domain = program . dom || "localhost:8888" ,
2222 chromium = program . chromium ;
2323
2424var connect = require ( 'connect' )
You can’t perform that action at this time.
0 commit comments