diff options
author | Karl Berry <karl@freefriends.org> | 2006-09-17 23:06:43 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2006-09-17 23:06:43 +0000 |
commit | d85813bf8ae8c0739ba192c4a8a1635654ef3543 (patch) | |
tree | 387bc4a9204b2eb70577fff5684d8011d7851e4f /Build/tools/tlrebuild | |
parent | e97879cdfcd2858bec92ada40ddfbd8f0637f287 (diff) |
-n for no commits
git-svn-id: svn://tug.org/texlive/trunk@2147 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/tools/tlrebuild')
-rwxr-xr-x | Build/tools/tlrebuild | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Build/tools/tlrebuild b/Build/tools/tlrebuild index b54d34c38c6..8a0ae6fd6ef 100755 --- a/Build/tools/tlrebuild +++ b/Build/tools/tlrebuild @@ -10,6 +10,13 @@ tools=`cd $mydir && pwd` PATH=$tools:$PATH; export PATH umask 0 +if test x$1 = x-n; then + chicken=true + shift +else + chicken=false +fi +# if test x$1 = x--no-tpm; then no_tpm=true shift @@ -55,6 +62,8 @@ message "#3" message "#4" update-tpm || exit 1) | grep -v '^Writing ' +$chicken && exit 0 + # sanity check of tpms, hopefully nothing to report after the update. message "tpm-check" tpm-check || exit 1 |