summaryrefslogtreecommitdiff
path: root/Master/texmf
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2008-12-23 00:22:06 +0000
committerKarl Berry <karl@freefriends.org>2008-12-23 00:22:06 +0000
commitce9d6e88b93e5715d26160610f9d9a61af006047 (patch)
tree510b97184908be4009323fef818212b2a52897fc /Master/texmf
parent7fdf6cb5ba5be1526376fe616295ec0e81a8affd (diff)
better make_container debugging, message tweaks
git-svn-id: svn://tug.org/texlive/trunk@11693 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf')
-rwxr-xr-xMaster/texmf/scripts/texlive/tlmgr.pl14
-rwxr-xr-xMaster/texmf/scripts/texlive/tlmgr2.pl14
2 files changed, 14 insertions, 14 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl
index a65667f91e0..d67f5f5599a 100755
--- a/Master/texmf/scripts/texlive/tlmgr.pl
+++ b/Master/texmf/scripts/texlive/tlmgr.pl
@@ -1139,11 +1139,11 @@ sub action_update {
if ($other_updates_asked_for) {
if (check_for_critical_updates($localtlpdb, $mediatlpdb)) {
if ($opt_force) {
- tlwarn("Continuing due to --force\n");
+ tlwarn("$0: Continuing due to --force.\n");
} elsif ($opt_list) {
# do not warn here
} else {
- die "not continuing, please see warning above!";
+ die "$0: Exiting, please read above warning.\n";
}
}
}
@@ -2313,15 +2313,15 @@ sub check_for_critical_updates
}
}
if ($criticalupdate) {
+ tlwarn("Updates for tlmgr itself are present.\n");
tlwarn("==========================================================\n");
- tlwarn("Updates for the tlmgr itself are present.\n");
- tlwarn("Please update the package bin-texlive and texlive.infra first, ");
+ tlwarn("Please update the package bin-texlive and texlive.infra first,");
tlwarn("e.g., by calling\n");
- tlwarn(" tlmgr update bin-texlive texlive.infra\n");
+ tlwarn(" tlmgr update bin-texlive texlive.infra\n");
tlwarn("Or get the latest updater from\nfor Unix-ish systems:\n");
- tlwarn(" $TeXLiveURL/update-tlmgr-latest.sh\n");
+ tlwarn(" $TeXLiveURL/update-tlmgr-latest.sh\n");
tlwarn("for Windows systems:\n");
- tlwarn(" $TeXLiveURL/update-tlmgr-latest.exe\n");
+ tlwarn(" $TeXLiveURL/update-tlmgr-latest.exe\n");
tlwarn("Then continue with other updates.\n");
tlwarn("==========================================================\n");
}
diff --git a/Master/texmf/scripts/texlive/tlmgr2.pl b/Master/texmf/scripts/texlive/tlmgr2.pl
index 9af143a1c81..69bce3ecfb3 100755
--- a/Master/texmf/scripts/texlive/tlmgr2.pl
+++ b/Master/texmf/scripts/texlive/tlmgr2.pl
@@ -1312,7 +1312,7 @@ sub action_update {
if ($other_updates_asked_for) {
if (check_for_critical_updates($localtlpdb, $mediatlpdb)) {
if ($opts{"force"}) {
- tlwarn("Continuing due to --force\n");
+ tlwarn("$0: Continuing due to --force.\n");
} elsif ($opts{"list"}) {
# do not warn here
} else {
@@ -1320,7 +1320,7 @@ sub action_update {
# return here and don't do any updates
return;
} else {
- die "not continuing, please see warning above!";
+ die "$0: Exiting, please read above warning.\n";
}
}
}
@@ -2692,15 +2692,15 @@ sub check_for_critical_updates
}
}
if ($criticalupdate) {
+ tlwarn("Updates for tlmgr itself are present.\n");
tlwarn("==========================================================\n");
- tlwarn("Updates for the tlmgr itself are present.\n");
- tlwarn("Please update the package bin-texlive and texlive.infra first, ");
+ tlwarn("Please update the package bin-texlive and texlive.infra first,");
tlwarn("e.g., by calling\n");
- tlwarn(" tlmgr update bin-texlive texlive.infra\n");
+ tlwarn(" tlmgr update bin-texlive texlive.infra\n");
tlwarn("Or get the latest updater from\nfor Unix-ish systems:\n");
- tlwarn(" $TeXLiveURL/update-tlmgr-latest.sh\n");
+ tlwarn(" $TeXLiveURL/update-tlmgr-latest.sh\n");
tlwarn("for Windows systems:\n");
- tlwarn(" $TeXLiveURL/update-tlmgr-latest.exe\n");
+ tlwarn(" $TeXLiveURL/update-tlmgr-latest.exe\n");
tlwarn("Then continue with other updates.\n");
tlwarn("==========================================================\n");
}