diff options
author | Norbert Preining <preining@logic.at> | 2009-08-26 07:24:40 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2009-08-26 07:24:40 +0000 |
commit | ad324bd0d49f2dea3fa7f7a20dc64f22770a07b9 (patch) | |
tree | 2eb3ce722ad6cc57ffe6918b8e0ee4e432a17dfc /Master | |
parent | d0997b8561bc6106c49ad37c40eb1e7878f4e061 (diff) |
don't warn that -location is not a supported argument!
git-svn-id: svn://tug.org/texlive/trunk@14864 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl index c3eb22c4810..da4c9700baf 100755 --- a/Master/texmf/scripts/texlive/tlmgr.pl +++ b/Master/texmf/scripts/texlive/tlmgr.pl @@ -270,6 +270,9 @@ sub main { if ($k eq "n" || $k eq "dry-run") { $kk = "dry-run|n"; } + if ($k eq "location" || $k eq "repository" || $k eq "repo") { + $kk = "location|repository|repo"; + } if (!defined($suppargs{$kk}) && !defined($globaloptions{$kk})) { push @notvalidargs, $k; } |