Skip to content

Commit

Permalink
fixed path issue in binary
Browse files Browse the repository at this point in the history
  • Loading branch information
juliangruber committed Jan 24, 2013
1 parent 5826c8f commit 740489e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bin/review-host.js
Expand Up @@ -7,11 +7,11 @@ var argv = optimist
.usage ('Usage: $0 [OPTIONS]')

.describe('sites', 'The folder the sites are in')
.default ('sites', './sites')
.default ('sites', process.cwd() + '/sites')
.alias ('sites', 's')

.describe('cache', 'The folder to be used for cache files')
.default ('cache', './cache')
.default ('cache', process.cwd() + '/cache')
.alias ('cache', 'c')

.describe('port', 'The port to listen to')
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "review-host",
"version": "0.0.2",
"version": "0.0.3",
"main": "host.js",
"author": "Julian Gruber <julian@juliangruber.com>",
"license": "MIT",
Expand Down

0 comments on commit 740489e

Please sign in to comment.