summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2016-06-04 17:03:41 +0100
committerIan Jackson <ijackson@chiark.greenend.org.uk>2016-07-16 16:47:47 +0100
commitda5d472747438a473f9981911996963c084aca54 (patch)
treea6a7916d38d06d4ef2087e8c310f9b1e806c6e98
parentded07ffa9b1056c1a0f27c3b51ba81c3cb16b0ff (diff)
Split brain: Generate .gitignore patch in deterministic order
-rwxr-xr-xdgit2
1 files changed, 1 insertions, 1 deletions
diff --git a/dgit b/dgit
index 40c7f3e..4af8f34 100755
--- a/dgit
+++ b/dgit
@@ -2598,7 +2598,7 @@ updates to users of the official Debian archive view of the package.
END
close GIPATCH or die "$gipatch: $!";
runcmd shell_cmd "exec >>$gipatch", @git, qw(diff),
- $unapplied, $headref, "--", keys %$editedignores;
+ $unapplied, $headref, "--", sort keys %$editedignores;
open SERIES, "+>>", "debian/patches/series" or die $!;
defined seek SERIES, -1, 2 or $!==EINVAL or die $!;
my $newline;