fix tags not being pushed for new babel versions - fixes #2019

This commit is contained in:
Sebastian McKenzie 2015-07-16 15:46:13 +01:00
parent fd9373d9ee
commit e1c981a9de

View File

@ -108,7 +108,7 @@ changedFiles.forEach(function (loc) {
var NEW_TAG_NAME = "v" + NEW_VERSION;
exec("git commit -m " + NEW_TAG_NAME, true);
exec("git tag " + NEW_TAG_NAME, true);
exec("git push --follow-tags", true);
exec("git push --tags", true);
changedPackages.forEach(function (name) {
var loc = getPackageLocation(name);