diff options
author | Karl Berry <karl@freefriends.org> | 2013-09-15 20:16:39 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2013-09-15 20:16:39 +0000 |
commit | f991c6a0debc5959bcd38731318756d9722b86bf (patch) | |
tree | 97e2df551628b39e91564bc6a3572fd342114c4f /Master/install-tl | |
parent | 3e4521f9064f28ee0ec226c6df4378c9551149ea (diff) |
report the directory in which the remnant
installation.profile is found.
git-svn-id: svn://tug.org/texlive/trunk@31659 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/install-tl')
-rwxr-xr-x | Master/install-tl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/install-tl b/Master/install-tl index 3db3f748f43..c62fac5c3c7 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -177,7 +177,6 @@ $::alternative_selector = 0; # do not debug translations by default $::debug_translation = 0; -# # some strings to describe the different meanings of option_file_assoc $::fileassocdesc[0] = "None"; $::fileassocdesc[1] = "Only new"; @@ -187,7 +186,8 @@ $::fileassocdesc[2] = "All"; # continue with the installation # note, we are in the installer directory. if (-r "installation.profile") { - print "ABORTED INSTALLATION FOUND: installation.profile\n"; + my $pwd = Cwd::getcwd(); + print "ABORTED TL INSTALLATION FOUND: installation.profile (in $pwd)\n"; print "Do you want to continue with the exact same settings as before (y/N): "; my $answer = <STDIN>; if ($answer =~ m/^y(es)?$/i) { |