diff options
author | Karl Berry <karl@freefriends.org> | 2008-09-12 20:39:10 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-09-12 20:39:10 +0000 |
commit | 90ce327a9f6b5599ea2048de693c9d96c1265a21 (patch) | |
tree | bf57d6f73d91c3cc140a5bcf31f7634712e69108 /Master | |
parent | d64b21731fdb715233aab1053095fd14111214bd (diff) |
(action_option): not worth ! when setting location.
git-svn-id: svn://tug.org/texlive/trunk@10577 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr.pl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl index bca17103e51..44eda96465b 100755 --- a/Master/texmf/scripts/texlive/tlmgr.pl +++ b/Master/texmf/scripts/texlive/tlmgr.pl @@ -850,11 +850,12 @@ sub action_option { # however, if we were given a url, that will get "normalized" to the # empty string, it not being a path. Restore the original value if so. $loc = $testloc if $testloc; - print "Setting default installation location to $loc!\n"; + info("tlmgr: setting default installation location to $loc\n"); $localtlpdb->option_location($loc); $localtlpdb->save; } else { - print "Default installation location: ", $localtlpdb->option_location, "\n"; + info("Default installation location: " + . $localtlpdb->option_location . "\n"); } } elsif ($what =~ m/^docfiles$/i) { # changes the default docfiles |