diff options
author | Karl Berry <karl@freefriends.org> | 2022-03-07 22:59:07 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2022-03-07 22:59:07 +0000 |
commit | e11e28473b9d0077ac956c182b5fb9f21bcd289c (patch) | |
tree | 03e8b9606ab76ef690910576a5c38b54be409ce3 /Master/install-tl | |
parent | dc7dd9b5324e230c9e11dd07980c0fb7d91dabef (diff) |
make install-tl --continue the default
git-svn-id: svn://tug.org/texlive/trunk@62504 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/install-tl')
-rwxr-xr-x | Master/install-tl | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Master/install-tl b/Master/install-tl index 3bbc5d2de20..4cc4c583d79 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -299,8 +299,7 @@ my $opt_scheme = ""; my $opt_version = 0; my $opt_warn_checksums = 1; my $opt_font; -# we might want to set this to 1 ...? TODO -my $opt_continue = 0; +my $opt_continue = 1; # unusual cases: $::opt_select_repository = 0; our $opt_in_place = 0; @@ -375,7 +374,7 @@ process_logging_options(); # now the others GetOptions( "all-options" => \$::opt_all_options, - "continue" => \$opt_continue, + "continue!" => \$opt_continue, "custom-bin=s" => \$opt_custom_bin, "debug-translation" => \$::debug_translation, "debug-fakenet" => \$opt_debug_fakenet, @@ -2892,7 +2891,12 @@ release. =item B<-no-cls> For the text mode installer only: do not clear the screen when entering -a new menu (for debugging purposes). +a new menu. For debugging. + +=item B<-no-continue> + +Do not install core packages first, or retry failed packages once. For +debugging. =item B<-no-persistent-downloads> |