Skip to content

Commit

Permalink
git-quiltimport.sh fix --patches handling
Browse files Browse the repository at this point in the history
When converting git-quiltimport.sh to the new git-rev-part --parseopt
system, the handling of --patches was broken.  We inadvertantly always
attempt to use '--patches' as the value.

This was introduced in the following commit:

    commit e01fbf1
    Author: Pierre Habouzit <madcoder@debian.org>
    Date:   Sun Nov 4 11:31:01 2007 +0100

        Migrate git-quiltimport.sh to use git-rev-parse --parseopt

Signed-off-by: Andy Whitcroft <apw@shadowen.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
awhitcroft authored and gitster committed Nov 13, 2007
1 parent 66006c6 commit 9e384b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git-quiltimport.sh
Expand Up @@ -23,8 +23,8 @@ do
dry_run=1
;;
--patches)
QUILT_PATCHES="$1"
shift
QUILT_PATCHES="$1"
;;
--)
shift
Expand Down

0 comments on commit 9e384b4

Please sign in to comment.