diff options
author | Karl Berry <karl@freefriends.org> | 2019-12-20 23:55:46 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-12-20 23:55:46 +0000 |
commit | be6b087b3c3de53d4540bc3fd7e7cfd7724b7fee (patch) | |
tree | 0f05ff9212fc9011969cc39b72c1b91ff9296244 /Master/install-tl | |
parent | e0d969870dacc055eb6aca85ac987ac9b567479c (diff) |
skip "import old settings" question if
TEXLIVE_INSTALL_NO_IMPORT is set in the environment.
git-svn-id: svn://tug.org/texlive/trunk@53198 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/install-tl')
-rwxr-xr-x | Master/install-tl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Master/install-tl b/Master/install-tl index 3ca1a0ae65a..511a92b8ebc 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -666,7 +666,7 @@ if ($opt_profile eq "") { # before we start the installation we check for the existence of # a previous installation, and in case we ship inform the UI - { + if (!exists $ENV{"TEXLIVE_INSTALL_NO_WELCOME"}) { my $tlmgrwhich = which("tlmgr"); if ($tlmgrwhich) { my $dn = dirname($tlmgrwhich); @@ -3143,6 +3143,11 @@ variables. Omit creating the ConTeXt cache. This is useful for redistributors. +=item C<TEXLIVE_INSTALL_NO_IMPORT> + +Omit check for installing on top of a previous installation and then +asking about importing previous settings. + =item C<TEXLIVE_INSTALL_NO_WELCOME> Omit printing the welcome message after successful installation, e.g., |