diff options
author | Norbert Preining <preining@logic.at> | 2008-07-10 10:27:48 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-07-10 10:27:48 +0000 |
commit | 3726af04a35d7fbf92f6da3ecef2b54d238f27f6 (patch) | |
tree | d9b2764ec33b25e902bb8bcf16065e8c1f924da7 /Master/texmf | |
parent | 1c7f172eca48842ba65a3b1069c92059832bf3cb (diff) |
TLUtils: process_logging_options now also sets $::LOGFILENAME
TLUtils: download_file: fix stupid error when downloading to | and returning 1
tlmgr/tlmgrgui: use process_logging_options, and transfer between the two
back and forth. Well at least from tlmgr to tlmgrgui, unfortunately we
cannot transfer it backwards without overwriting stuff already written there
git-svn-id: svn://tug.org/texlive/trunk@9427 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf')
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr.pl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl index 1e46f85705c..14d59d274d6 100755 --- a/Master/texmf/scripts/texlive/tlmgr.pl +++ b/Master/texmf/scripts/texlive/tlmgr.pl @@ -989,6 +989,11 @@ sub action_gui { if (defined($opt_gui_lang)); push @cmdline, "--location", "$opt_location" if (defined($opt_location)); + push @cmdline, "--logfile", "$::LOGFILENAME" + if (defined($::LOGFILE)); + push @cmdline, "-v" if ($::opt_verbosity > 0); + push @cmdline, "-v" if ($::opt_verbosity > 1); + push @cmdline, "-q" if ($::opt_quiet > 0); if (defined($screen)) { if (($screen eq "install") || ($screen eq "update")) { push @cmdline, "--load"; |