diff options
author | Norbert Preining <preining@logic.at> | 2018-03-10 00:46:28 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2018-03-10 00:46:28 +0000 |
commit | bef76fdc68e9374aa9fc8e98ab5298fbf5c9eca0 (patch) | |
tree | 776055f8f0b88c81d98341ce92c4bbf5e45935b4 /Master/install-tl | |
parent | bde184e09833f0626d5027430afbddaf399082c8 (diff) |
add repository setting if specified on the cmd line on restart msg
git-svn-id: svn://tug.org/texlive/trunk@46908 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/install-tl')
-rwxr-xr-x | Master/install-tl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Master/install-tl b/Master/install-tl index e366ff9d349..3f6763f1a6b 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -1972,12 +1972,13 @@ sub do_install_packages { tlwarn("Installation failed.\n"); tlwarn("Rerunning the installer will try to restart the installation.\n"); tlwarn("Or you can restart by running the installer with:\n"); + my $repostr = ($opt_location ? " --repository $location" : ""); if (win32()) { - tlwarn(" install-tl-windows.bat --profile $profile_name [EXTRA-ARGS]\n" + tlwarn(" install-tl-windows.bat$repostr --profile $profile_name [EXTRA-ARGS]\n" ."or\n" - ." install-tl-advanced.bat --profile $profile_name [EXTRA-ARGS]\n"); + ." install-tl-advanced.bat$repostr --profile $profile_name [EXTRA-ARGS]\n"); } else { - tlwarn(" install-tl --profile $profile_name [EXTRA-ARGS]\n"); + tlwarn(" install-tl$repostr --profile $profile_name [EXTRA-ARGS]\n"); } flushlog(); exit(1); |