We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e11543 commit 1aa1d93Copy full SHA for 1aa1d93
lib/remove.js
@@ -44,6 +44,7 @@ async function remove (gyp, argv) {
44
}
45
46
module.exports = function (gyp, argv, callback) {
47
- remove(gyp, argv).then(callback.bind(undefined, null), callback)
+ // Expects no fulfilled response
48
+ remove(gyp, argv).then(() => callback(), callback)
49
50
module.exports.usage = 'Removes the node development files for the specified version'
0 commit comments