From 5080b7b0cb6deca60537fb1a6cb60fedc83e1f46 Mon Sep 17 00:00:00 2001 From: Andrew Miner Date: Mon, 16 Nov 2015 20:59:09 -0800 Subject: [PATCH] Fix publish script --- scripts/publish | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/scripts/publish b/scripts/publish index f90cabc83..3bea702c3 100755 --- a/scripts/publish +++ b/scripts/publish @@ -13,10 +13,7 @@ fi npm version "$VERSION_TYPE" || die "Invalid version type: $VERSION_TYPE" npm publish -git add package.json \ - && git commit -m "Update package version" \ - && git push \ - && git checkout production \ +git checkout production \ && git rebase master \ && git push \ && git checkout master \