Skip to content

Commit ea4e235

Browse files
committed
changed domain arg from -r to -d
1 parent 35d87e4 commit ea4e235

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

frame.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ var program = require('commander')
55
program
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+
1212
if (!program.username) {
1313
console.log('Username is required.')
1414
program.outputHelp()
@@ -18,7 +18,7 @@ if (!program.username) {
1818
}
1919

2020
var username = program.username,
21-
root_domain = program.domain || "localhost:8888",
21+
root_domain = program.dom || "localhost:8888",
2222
chromium = program.chromium;
2323

2424
var connect = require('connect')

0 commit comments

Comments
 (0)