1
0
mirror of synced 2026-02-26 08:13:53 +00:00

This seems closer to the original semantics

This commit is contained in:
Axel Beckert
2021-10-24 05:09:08 +02:00
parent cf693d9e64
commit ac04bed0f2

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', '--others', '--ignored', '--exclude-standard');
my $cmd = Git::command_output_pipe('ls-files', '--cached', '--ignored', '--exclude-standard');
my $output;
while (<$cmd>) { $output .= "--> $_" }
close $cmd;