Skip to content

Commit eff20c7

Browse files
authored
Merge pull request #122 from donejs/fix-cross-spawn-import
Import cross-spawn instead of cross-spawn-async
2 parents 17f3345 + 829f073 commit eff20c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ var Q = require('q');
22
var debug = require('debug')('donejs-cli:utils');
33
var path = require('path');
44
var fs = require('fs');
5-
var spawn = require('cross-spawn-async');
5+
var spawn = require('cross-spawn');
66
var yeoman = require('yeoman-environment');
77

88
exports.projectRoot = function() {

0 commit comments

Comments
 (0)