chiark / gitweb /
debian/control, git-debrebase: "use fnmatch;"
[dgit.git] / git-debrebase
index a9f510c8f112327b41b19adefcaff4060491be6b..421a1cb25f3406981e26f498b6bad8840498147d 100755 (executable)
@@ -87,8 +87,9 @@ use POSIX;
 use Data::Dumper;
 use Getopt::Long qw(:config posix_default gnu_compat bundling);
 use Dpkg::Version;
+use File::FnMatch qw(:fnmatch);
 
-our ($opt_force);
+our ($opt_force, $opt_noop_ok);
 
 our $us = qw(git-debrebase);
 
@@ -1140,6 +1141,7 @@ sub cmd_downstream_rebase_launder_v0 () {
 }
 
 GetOptions("D+" => \$debuglevel,
+          'noop-ok', => \$opt_noop_ok,
           'f=s' => \@fproblem_force_opts,
           'force!') or die badusage "bad options\n";
 initdebug('git-debrebase ');