insomnia-node-libcurl
Version:
Node bindings for libcurl. Based on the work from node-curl.
18 lines (16 loc) • 567 B
JavaScript
// Proudly copied from https://github.com/nodegit/nodegit/blob/288ab93/lifecycleScripts/execPromise.js
var cp = require('child_process');
// We have to manually promisify this because at this is required in lifecycle
// methods and we are not guaranteed that any 3rd party packages are installed
// at this point
module.exports = function(command, opts) {
return new Promise(function(resolve, reject) {
return cp.exec(command, opts, function(err, result) {
if (err) {
reject(err);
} else {
resolve(result);
}
});
});
};