Skip to content

Commit

Permalink
fix argument list
Browse files Browse the repository at this point in the history
  • Loading branch information
JerrySievert committed Apr 3, 2014
1 parent f3208a1 commit ddf04e0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions bin/mongolike-install
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ var argv = require('optimist')
.default('h', 'localhost')
.alias('h', 'host')
.describe('h', 'Database host')
.default('p', '5432')
.alias('p', 'port')
.default('p', 'password')
.alias('p', 'password')
.describe('u', 'User')
.default('u', 'postgres')
.alias('u', 'user')
Expand Down
4 changes: 2 additions & 2 deletions test/test_runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ var argv = require('optimist')
.default('h', 'localhost')
.alias('h', 'host')
.describe('h', 'Database host')
.default('p', '5432')
.alias('p', 'port')
.default('p', 'password')
.alias('p', 'password')
.describe('u', 'User')
.default('u', 'postgres')
.alias('u', 'user')
Expand Down

0 comments on commit ddf04e0

Please sign in to comment.