Commit 3b4d00a 1 parent bde02c8 commit 3b4d00a Copy full SHA for 3b4d00a
File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -280,7 +280,7 @@ while (1) {
280
280
print " l $n $c \n " ;
281
281
next ;
282
282
} elsif (-d _) {
283
- print STDERR " $file \n " if $opt_verbose && $opt_verbose > 1;
283
+ print STDERR " $file \n " if $opt_verbose && ( $opt_verbose > 1 || $file =~ / ^KIWI \/ [^ \/ ]* $ / ) ;
284
284
print " d $n \n " ;
285
285
next ;
286
286
} elsif (! -f _) {
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ while (<S>) {
81
81
die (" file without directory: $file \n " ) unless $done {$1 } && $done {$1 } eq ' d' ;
82
82
}
83
83
if ($filetype eq ' d' ) { # dir
84
- print " $file \n " if $opt_verbose && ! ($opt_verbose == 1 && $file =~ / ^KIWI\/ .* \/ / );
84
+ print " $file \n " if $opt_verbose && ($opt_verbose > 1 || $file =~ / ^KIWI\/ [^ \/ ]* $ / );
85
85
mkdir ($file ) || die (" mkdir $file : $! \n " );
86
86
$done {$file } = ' d' ;
87
87
next ;
You can’t perform that action at this time.
0 commit comments