From e1c981a9de22a08eb2688d62bef20b6f02bbd21e Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Thu, 16 Jul 2015 15:46:13 +0100 Subject: [PATCH] fix tags not being pushed for new babel versions - fixes #2019 --- scripts/publish.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/publish.js b/scripts/publish.js index 727dc86de0..6f9b739817 100755 --- a/scripts/publish.js +++ b/scripts/publish.js @@ -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);