Alter require to support `npm link`

This commit is contained in:
Harlan T Wood 2015-08-25 16:56:00 -07:00
parent 6b3cce3cbf
commit c30e63832b
1 changed files with 1 additions and 2 deletions

View File

@ -6,7 +6,7 @@ var wrench = require('wrench');
var grunt = require('grunt'); var grunt = require('grunt');
require('shelljs/global'); require('shelljs/global');
var readYaml = require('read-yaml'); var readYaml = require('read-yaml');
var Embark = require('embark-framework'); var Embark = require('..');
var run = function(cmd) { var run = function(cmd) {
if (exec(cmd).code != 0) { if (exec(cmd).code != 0) {
@ -169,4 +169,3 @@ if (!process.argv.slice(2).length) {
} }
exit(); exit();