Skip to content

Commit

Permalink
Merge pull request kubernetes#11360 from zmerlynn/fix_silly_backslash
Browse files Browse the repository at this point in the history
Fix hack/cherry_pick_pull.sh on OS X (sigh):
  • Loading branch information
brendandburns committed Jul 16, 2015
2 parents 12d984d + fb86132 commit 59bc8db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hack/cherry_pick_pull.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ shift 1
declare -r PULLS=( "$@" )

function join { local IFS="$1"; shift; echo "$*"; }
declare -r PULLDASH=$(join - "${PULLS[@]/#/\#}") # Generates something like "#12345-#56789"
declare -r PULLSUBJ=$(join " " "${PULLS[@]/#/\#}") # Generates something like "#12345 #56789"
declare -r PULLDASH=$(join - "${PULLS[@]/#/#}") # Generates something like "#12345-#56789"
declare -r PULLSUBJ=$(join " " "${PULLS[@]/#/#}") # Generates something like "#12345 #56789"

echo "+++ Updating remotes..."
git remote update
Expand Down

0 comments on commit 59bc8db

Please sign in to comment.