Skip to content
Snippets Groups Projects
Commit 17a5bedb authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

Clarify --verbose and "non --verbose" output of bin/strip-nondeterminism so we...

Clarify --verbose and "non --verbose" output of bin/strip-nondeterminism so we don't imply we are normalizing files that we are not. (Closes: #1093513)
parent b8e5d87e
No related branches found
No related tags found
No related merge requests found
......@@ -113,8 +113,8 @@ for my $filename (@ARGV) {
}
}
print "Normalizing $filename\n" if $verbose;
eval { $normalizer->($filename); 1 }
print "Calling normalizer for $filename\n" if $verbose;
eval { print "Normalized $filename\n" if $normalizer->($filename); 1 }
or die "strip-nondeterminism: $filename: $@";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment