diff options
author | Karl Berry <karl@freefriends.org> | 2010-12-02 18:02:32 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-12-02 18:02:32 +0000 |
commit | ec2695953d651111268fe88a6c24cf02fc3750df (patch) | |
tree | d9c6e8d9797f4f5933baaaf25a8b2b4ccba71022 /Master/tlpkg/bin/tlprm | |
parent | 60492ebe7d5cab51e7db64e9ed4c18876d51ca62 (diff) |
consistence
git-svn-id: svn://tug.org/texlive/trunk@20637 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin/tlprm')
-rwxr-xr-x | Master/tlpkg/bin/tlprm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/tlpkg/bin/tlprm b/Master/tlpkg/bin/tlprm index fa134018cd8..19109e86cf9 100755 --- a/Master/tlpkg/bin/tlprm +++ b/Master/tlpkg/bin/tlprm @@ -90,9 +90,9 @@ sub main `printf "@coll_files" >>$commit_file`; my $check_script = "$Master/tlpkg/bin/tlpkg-ctan-check"; - @lines = `egrep '( |^)$f( |\$)' $check_script`; + @lines = `egrep -nH '( |^)$f( |\$)' $check_script`; if (@lines) { - print "no future checks: $check_script\n"; + print @lines; `echo $check_script >>$commit_file`; } |