From 1d6db553b07c52c2536ed21ce64b3b968745ae5a Mon Sep 17 00:00:00 2001 From: Zach Loafman Date: Wed, 8 Jul 2015 17:50:46 -0700 Subject: [PATCH] Fix two issues in cherry_pick_pull: * Ignore errexit in trap handler * Check for branch (since two people have complained now..) --- hack/cherry_pick_pull.sh | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/hack/cherry_pick_pull.sh b/hack/cherry_pick_pull.sh index cf047488bf..3a6fd6cee5 100755 --- a/hack/cherry_pick_pull.sh +++ b/hack/cherry_pick_pull.sh @@ -29,7 +29,11 @@ declare -r STARTINGBRANCH=$(git symbolic-ref --short HEAD) declare -r REBASEMAGIC="${KUBE_ROOT}/.git/rebase-apply" if [[ "$#" -ne 2 ]]; then - echo "${0} : cherry pick onto and leave instructions for proposing pull request" + echo "${0} : cherry pick onto and leave instructions for proposing pull request" + echo "" + echo " Checks out and handles the cherry-pick of for you." + echo " Example:" + echo " $0 12345 upstream/release-3.14" exit 2 fi @@ -48,6 +52,12 @@ declare -r BRANCH="${2}" echo "+++ Updating remotes..." git remote update +if ! git log -n1 --format=%H "${BRANCH}" >/dev/null 2>&1; then + echo "!!! '${BRANCH}' not found. The second argument should be something like upstream/release-0.21." + echo " (In particular, it needs to be a valid, existing remote branch that I can 'git checkout'.)" + exit 1 +fi + echo "+++ Downloading patch to /tmp/${PULL}.patch (in case you need to do this again)" curl -o "/tmp/${PULL}.patch" -sSL "https://github.com/GoogleCloudPlatform/kubernetes/pull/${PULL}.patch" @@ -62,11 +72,11 @@ function return_to_kansas { echo "" echo "+++ Returning you to the ${STARTINGBRANCH} branch and cleaning up." if [[ "${gitamcleanup}" == "true" ]]; then - git am --abort >/dev/null + git am --abort >/dev/null 2>&1 || true fi - git checkout -f "${STARTINGBRANCH}" >/dev/null + git checkout -f "${STARTINGBRANCH}" >/dev/null 2>&1 || true if [[ -n "${cleanbranch}" ]]; then - git branch -D "${cleanbranch}" >/dev/null + git branch -D "${cleanbranch}" >/dev/null 2>&1 || true fi } trap return_to_kansas EXIT