chiark / gitweb /
In --dry-run mode, _do_ actually run dpkg-source --commit so that we actually do...
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Fri, 21 Aug 2015 11:51:39 +0000 (12:51 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Fri, 21 Aug 2015 11:51:39 +0000 (12:51 +0100)
debian/changelog
dgit

index 604d66d42350ef0dab130dc1ad781e7b33a61292..1ab75e1e1593e221f9349752aeda42a795e76278 100644 (file)
@@ -11,6 +11,9 @@ dgit (1.4~~) UNRELEASED; urgency=low
   * In dgit(7), discuss binaries and documentation present in upstream but
     removed by rules clean.
   * Detect and reject git trees containing debian/source/local-options.
+  * In --dry-run mode, _do_ actually run dpkg-source --commit so that we
+    actually do construct the quilt fixup commit; instead, honour
+    --dry-run by avoiding pulling it back to your HEAD.
 
  --
 
diff --git a/dgit b/dgit
index d6f37ffd3116122222dfee1d61cc7272fd936747..ce858ab98057bd770095ecf2b16b8e322e126922 100755 (executable)
--- a/dgit
+++ b/dgit
@@ -2493,7 +2493,7 @@ END
        local $ENV{'EDITOR'} = cmdoutput qw(realpath --), $0;
        local $ENV{'VISUAL'} = $ENV{'EDITOR'};
        local $ENV{$fakeeditorenv} = cmdoutput qw(realpath --), $descfn;
-       runcmd_ordryrun_local @dpkgsource, qw(--commit .), $patchname;
+       runcmd @dpkgsource, qw(--commit .), $patchname;
     }
 }
 
@@ -2874,7 +2874,8 @@ END
     }
 
     changedir '../../../..';
-    runcmd @git, qw(pull --ff-only -q .git/dgit/unpack/work master);
+    runcmd_ordryrun_local
+        @git, qw(pull --ff-only -q .git/dgit/unpack/work master);
 }
 
 sub quilt_fixup_editor () {