summaryrefslogtreecommitdiff
path: root/Master/install-tl
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2013-09-15 20:16:39 +0000
committerKarl Berry <karl@freefriends.org>2013-09-15 20:16:39 +0000
commitf991c6a0debc5959bcd38731318756d9722b86bf (patch)
tree97e2df551628b39e91564bc6a3572fd342114c4f /Master/install-tl
parent3e4521f9064f28ee0ec226c6df4378c9551149ea (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-xMaster/install-tl4
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) {