1
0
mirror of synced 2026-04-11 06:37:22 +00:00

Make test xt/gitignore.t work with git releases ≥ 2.32.0

This commit is contained in:
Axel Beckert
2021-10-24 02:23:47 +02:00
parent 7ebb0f41a4
commit fc7c09596a
2 changed files with 2 additions and 1 deletions

1
debian/changelog vendored
View File

@@ -2,6 +2,7 @@ xen-tools (4.9.1-1) UNRELEASED; urgency=medium
* New upstream bugfix release.
+ Fix missing "|" in regex in Debian's 20-setup-apt. (Closes: #997668)
+ Make test xt/gitignore.t work with git releases ≥ 2.32.0.
-- Axel Beckert <abe@debian.org> Sun, 24 Oct 2021 02:02:49 +0200

View File

@@ -23,7 +23,7 @@ if (which('git') and -d '.git') {
use_ok( 'Git' );
# First, check that no tracked files are ignored
my $cmd = Git::command_output_pipe('ls-files', '--ignored', '--exclude-standard');
my $cmd = Git::command_output_pipe('ls-files', '--others', '--ignored', '--exclude-standard');
my $output;
while (<$cmd>) { $output .= "--> $_" }
close $cmd;