strider
Version:
Brilliant continuous deployment platform
33 lines • 878 B
JavaScript
const spawn = require('cross-spawn');
module.exports = {
clone: function (repo, tag, path, cb) {
const proc = spawn('git', [
'clone',
'--branch',
tag,
'--depth',
'1',
repo,
path,
]);
const errors = [];
proc.stderr.on('data', function (chk) {
errors.push(chk.toString());
});
proc.on('error', function (err) {
return cb(err);
});
proc.on('close', function (code) {
if (code !== 0) {
return cb(new Error('git clone failed with non-zero status ' +
code +
'.\n' +
errors.join('\n')));
}
else {
return cb(null);
}
});
},
};
//# sourceMappingURL=git.js.map