Skip to content

Commit

Permalink
Merge #242: sync-upstream.sh: Fix position of "-b" option in reproduc…
Browse files Browse the repository at this point in the history
…e command

9b6a1c3 sync-upstream.sh: Fix position of "-b" option in reproduce command (Tim Ruffing)

Pull request description:

ACKs for top commit:
  jonasnick:
    utACK 9b6a1c3

Tree-SHA512: 27e4a41bc9c8f10715623f669c97a511520753b23d24ae91d6d2144e54588da0769f97b1de78c87b7471b39e556b682b1c2910b2bf71f124fb77cbc9e446d5f8
  • Loading branch information
real-or-random committed Jul 18, 2023
2 parents 533571d + 9b6a1c3 commit 30fc9d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contrib/sync-upstream.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,13 @@ case $1 in
shift
setup
range "$@"
REPRODUCE_COMMAND="$0 range -b $LOCAL_BRANCH $RANGEEND_COMMIT"
REPRODUCE_COMMAND="$0 -b $LOCAL_BRANCH range $RANGEEND_COMMIT"
;;
select)
shift
setup
COMMITS=$*
REPRODUCE_COMMAND="$0 select -b $LOCAL_BRANCH $@"
REPRODUCE_COMMAND="$0 -b $LOCAL_BRANCH select $@"
;;
help)
help
Expand Down

0 comments on commit 30fc9d6

Please sign in to comment.