You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by fh...@apache.org on 2007/03/14 17:30:01 UTC

svn commit: r518208 - /tomcat/build/tags/tc5.5.x/TOMCAT_5_5_23/sign.bat

Author: fhanik
Date: Wed Mar 14 09:29:59 2007
New Revision: 518208

URL: http://svn.apache.org/viewvc?view=rev&rev=518208
Log:
Signing is for .zip and .tar.gz only

Modified:
    tomcat/build/tags/tc5.5.x/TOMCAT_5_5_23/sign.bat

Modified: tomcat/build/tags/tc5.5.x/TOMCAT_5_5_23/sign.bat
URL: http://svn.apache.org/viewvc/tomcat/build/tags/tc5.5.x/TOMCAT_5_5_23/sign.bat?view=diff&rev=518208&r1=518207&r2=518208
==============================================================================
--- tomcat/build/tags/tc5.5.x/TOMCAT_5_5_23/sign.bat (original)
+++ tomcat/build/tags/tc5.5.x/TOMCAT_5_5_23/sign.bat Wed Mar 14 09:29:59 2007
@@ -6,7 +6,12 @@
 rem todo - make one for unix as well, and avoid signing the .md5 files
 
 @echo off
-FOR /R %cd%\release\v5.5.19 %%i in (*.*) do (
+FOR /R %cd%\release\v5.5.23 %%i in (*.zip) do (
+  echo Signing %%i
+  echo %1|gpg --passphrase-fd 0 -a -b %%i 
+)
+
+FOR /R %cd%\release\v5.5.23 %%i in (*.gz) do (
   echo Signing %%i
   echo %1|gpg --passphrase-fd 0 -a -b %%i 
 )



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org