diff options
Diffstat (limited to 'lib/utils/command.js')
-rw-r--r-- | lib/utils/command.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils/command.js b/lib/utils/command.js index 4269d6c..c3e33c7 100644 --- a/lib/utils/command.js +++ b/lib/utils/command.js @@ -19,7 +19,7 @@ function spawn(command, args, options) { return Promise.reject(new Error('Command execution is not possible on this platform')); } - var d = Promise.deferred(); + var d = Promise.defer(); var child = childProcess.spawn(command, args, options); child.on('error', function(error) { |