This is an automated email from the git hooks/post-receive script. osamu pushed a commit to branch multitar in repository devscripts.
commit 5f3e466ee6c7b993f65706eb8b593829a1658898 Author: Osamu Aoki <[email protected]> Date: Tue Oct 13 15:07:43 2015 +0000 mk-origtargz: fix Files-Excluded for duplicate entries Patch by: Kan-Ru Chen (陳侃如) <[email protected]> Closes: #762263 --- scripts/mk-origtargz.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/mk-origtargz.pl b/scripts/mk-origtargz.pl index 7a212d6..3c1db9e 100644 --- a/scripts/mk-origtargz.pl +++ b/scripts/mk-origtargz.pl @@ -180,6 +180,7 @@ use Devscripts::Compression qw/compression_is_supported compression_guess_from_f use Cwd 'abs_path'; use File::Copy; use Dpkg::Control::Hash; +use List::MoreUtils qw(uniq); sub decompress_archive($$); sub compress_archive($$$); @@ -467,6 +468,7 @@ if (@exclude_globs) { # ensure files are mentioned before the directory they live in # (otherwise tar complains) @to_delete = sort {$b cmp $a} @to_delete; + @to_delete = uniq @to_delete; $deletecount = scalar(@to_delete); } -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/collab-maint/devscripts.git _______________________________________________ devscripts-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/devscripts-devel
