Skip to content

Commit

Permalink
🐛 command line argument issue
Browse files Browse the repository at this point in the history
  • Loading branch information
princejwesley committed May 6, 2016
1 parent 6c81eb5 commit 38f2718
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env node
require('child_process')
.spawn(require('./'), process.argv.slice(2), { stdio: 'inherit', detached: true })
.spawn(require('./'), ['.'].concat(process.argv.slice(2)), { stdio: 'inherit', detached: true })
.on('close', process.exit.bind(process)).unref();
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mancy",
"version": "3.0.0",
"version": "3.0.0-1",
"description": "Install latest binary for mancy repl",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 38f2718

Please sign in to comment.