diff options
author | Norbert Preining <preining@logic.at> | 2008-10-18 07:54:09 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-10-18 07:54:09 +0000 |
commit | 64da0923ac052a55643433efcf5c630d2430b0c4 (patch) | |
tree | 4a1ebb6569f0ca8a1bbc492ffe711679c7c079ba /Master | |
parent | c6548c07cd52ed3d95b53901647180098db16e56 (diff) |
fix a next that should be a return when running tlmgr --dry-run on w32
git-svn-id: svn://tug.org/texlive/trunk@11001 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl index 64e7439d63d..df254f4c82d 100755 --- a/Master/texmf/scripts/texlive/tlmgr.pl +++ b/Master/texmf/scripts/texlive/tlmgr.pl @@ -769,7 +769,7 @@ EOF # that could be more intelligent for decent $opt_dry output my $root = $localtlpdb->root; my $temp = "$root/temp"; - next if $opt_dry; + return if $opt_dry; if (!$::updater_started) { open_win32_updater($root); $::updater_started = 1; |