diff options
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) { |