From 480b2847667c15a784c6aaf086dfada3b35d8804 Mon Sep 17 00:00:00 2001 From: Venkatesh Radhakrishnan Date: Tue, 10 Mar 2015 17:24:33 -0700 Subject: [PATCH] Fix make_new_version.sh Summary: One of the commands in the script make_new_version.sh was incorrect. Fixed it. Test Plan: Try the script out to verify that it works. Reviewers: igor, sdong Reviewed By: sdong Subscribers: dhruba, leveldb Differential Revision: https://reviews.facebook.net/D34791 --- build_tools/make_new_version.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_tools/make_new_version.sh b/build_tools/make_new_version.sh index a8d524fcc..409944f83 100755 --- a/build_tools/make_new_version.sh +++ b/build_tools/make_new_version.sh @@ -37,7 +37,7 @@ fi title "Adding new tag for this release ..." BRANCH="$ROCKSDB_VERSION.fb" -$GIT co -b $BRANCH +$GIT checkout -b $BRANCH # Setting up the proxy for remote repo access title "Pushing new branch to remote repo ..."