From d6275590b46dc79887937cb8fd2184e22a5e4a0a Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Thu, 6 Apr 2006 07:32:56 +0000 Subject: [PATCH] Make first part of name of stamp file uppercase. --- releasetools/docbook-build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/releasetools/docbook-build b/releasetools/docbook-build index d2ef67e22..d934f15cf 100755 --- a/releasetools/docbook-build +++ b/releasetools/docbook-build @@ -264,7 +264,7 @@ These snapshots are intended for testing purposes only and otherwise come with no guarantees. Any of them may in fact be broken at any given time. EOF - cat <<- EOF > $DISTRO/$RELEASEVERSION\_$DATE + cat <<- EOF > $DISTRO/$(echo $RELEASEVERSION | tr a-z A-Z)\_$DATE This directory contains a pre-release snapshot of the DocBook "$DISTRO" distribution, auto-built from the latest development sources in the DocBook project CVS repository on $DATE at $TIME $ZONE. @@ -326,7 +326,7 @@ EOF rm -rf $TMP/docbook-$DISTRO*$RELEASEVERSION.zip rm -rf $TMP/docbook-$DISTRO-$RELEASEVERSION - rm -f $DISTRO/$RELEASEVERSION$\_DATE $DISTRO/LatestChanges HEADER.txt README.txt LatestChanges + rm -f $DISTRO/$(echo $RELEASEVERSION | tr a-z A-Z)\_DATE $DISTRO/LatestChanges HEADER.txt README.txt LatestChanges date -- 2.40.0