Skip to content

Commit

Permalink
Linked with new local-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeStanton committed May 14, 2015
1 parent 2e2e577 commit 526890d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions local-cli/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

var spawn = require('child_process').spawn;
var path = require('path');

var init = require('../init.js');
var install = require('./install.js');
var bundle = require('./bundle.js');

Expand Down Expand Up @@ -59,10 +61,6 @@ function run() {
// Here goes any cli commands we need to
}

function init(root, projectName) {
spawn(path.resolve(__dirname, '../init.sh'), [projectName], {stdio:'inherit'});
}

if (require.main === module) {
run();
}
Expand Down

0 comments on commit 526890d

Please sign in to comment.