]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Include version numbers in the generated snapshot diff
authorhno <>
Tue, 8 Jan 2002 21:43:10 +0000 (21:43 +0000)
committerhno <>
Tue, 8 Jan 2002 21:43:10 +0000 (21:43 +0000)
mksnapshot.sh

index e504e8b801029f964b319af4535d9e650c480872..339b987b8023ad6b9f58b5323d18fb204e873131 100755 (executable)
@@ -46,6 +46,7 @@ echo ${PACKAGE}-${VERSION}-${date}.tar.gz >>${tag}.out
 echo ${PACKAGE}-${VERSION}-${date}.tar.bz2 >>${tag}.out
 
 if (echo $VERSION | grep PRE) || (echo $VERSION | grep STABLE); then
-  cvs -q rdiff -u -r SQUID_`echo $VERSION | tr .- __` -r $tag $package >${PACKAGE}-${VERSION}-${date}.diff
+  echo "Differences from ${PACKAGE}-${VERSION} to ${PACKAGE}-${VERSION}-${date}" >${PACKAGE}-${VERSION}-${date}.diff
+  cvs -q rdiff -u -r SQUID_`echo $VERSION | tr .- __` -r $tag $package >>${PACKAGE}-${VERSION}-${date}.diff
   echo ${PACKAGE}-${VERSION}-${date}.diff >>${tag}.out
 fi