You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by bl...@apache.org on 2003/06/18 22:11:28 UTC

cvs commit: avalon/tools/bin sign-distributions.sh

bloritsch    2003/06/18 13:11:28

  Modified:    tools/bin sign-distributions.sh
  Log:
  Update the distrubution signing script to reflect the relative location for distros with Maven
  
  Revision  Changes    Path
  1.2       +4 -4      avalon/tools/bin/sign-distributions.sh
  
  Index: sign-distributions.sh
  ===================================================================
  RCS file: /home/cvs/avalon/tools/bin/sign-distributions.sh,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- sign-distributions.sh	21 Jul 2001 05:06:04 -0000	1.1
  +++ sign-distributions.sh	18 Jun 2003 20:11:27 -0000	1.2
  @@ -3,12 +3,12 @@
   echo -n "Enter gpg password (default key): "
   read PASSWORD
   
  -for i in distributions/*.gz; do 
  +for i in target/distributions/*.gz; do
    rm -f $i.asc
  - echo $PASSWORD | gpg --armour --detach-sign --passphrase-fd 0 --sign $i; 
  + echo $PASSWORD | gpg --armour --detach-sign --passphrase-fd 0 --sign $i;
   done;
   
  -for i in distributions/*.zip; do 
  +for i in target/distributions/*.zip; do
    rm -f $i.asc
  - echo $PASSWORD | gpg --armour --detach-sign --passphrase-fd 0 --sign $i; 
  + echo $PASSWORD | gpg --armour --detach-sign --passphrase-fd 0 --sign $i;
   done;
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: cvs-unsubscribe@avalon.apache.org
For additional commands, e-mail: cvs-help@avalon.apache.org