Skip to content

Commit

Permalink
sync-upstream.sh: Fix position of "-b" option in reproduce command
Browse files Browse the repository at this point in the history
  • Loading branch information
real-or-random committed Jul 17, 2023
1 parent 533571d commit 9b6a1c3
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 9b6a1c3

Please sign in to comment.