Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
git.tag(v, v, (err) => {
if (err) return cb(err);
git.push('origin', 'master', {
args: '--tags'
}, cb);
return true;
});
return true;
git.tag(v, v, (err) => {
if (err) return cb(err);
git.push('origin', 'master', {
args: '--tags'
}, cb);
return true;
});
return true;
git.tag(v, v, (err) => {
if (err) return cb(err);
git.push('origin', 'master', {
args: '--tags'
}, cb);
return true;
});
return true;
git.tag(v, v, (err) => {
if (err) return cb(err);
git.push('origin', 'master', {
args: '--tags'
}, cb);
return true;
});
return true;
gulp.task('git-push', ['git-submodule-update'], function (cb) {
git.push('origin', 'master', { args: '--follow-tags' + ((settings.debug) ? ' --dry-run' : ''), cwd: './' }, cb, function (err) {
if (err) throw err;
});
});