You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2010/09/17 22:48:13 UTC

svn commit: r998311 - /directory/studio/trunk/tools/sign.sh

Author: elecharny
Date: Fri Sep 17 20:48:12 2010
New Revision: 998311

URL: http://svn.apache.org/viewvc?rev=998311&view=rev
Log:
 removed the bizarre characters

Modified:
    directory/studio/trunk/tools/sign.sh

Modified: directory/studio/trunk/tools/sign.sh
URL: http://svn.apache.org/viewvc/directory/studio/trunk/tools/sign.sh?rev=998311&r1=998310&r2=998311&view=diff
==============================================================================
--- directory/studio/trunk/tools/sign.sh (original)
+++ directory/studio/trunk/tools/sign.sh Fri Sep 17 20:48:12 2010
@@ -9,7 +9,7 @@ read PASSWORD
 stty echo
 echo ""
 
-for FILE in $(find . -not '(' -name "*.md5″ -or -name "*.sha1″ -or -name "*.asc" ')' -and -type f) ; do
+for FILE in $(find . -not '(' -name "*.md5" -or -name "*.sha1" -or -name "*.asc" ')' -and -type f) ; do
     if [ -f "$FILE.asc" ]; then
         echo "Skipping: $FILE"
         continue
@@ -22,4 +22,4 @@ for FILE in $(find . -not '(' -name "*.m
     gpg --print-md SHA1 "$FILE" > "$FILE".sha
 
     echo "$PASSWORD" | gpg --default-key "$DEFAULT_KEY" --detach-sign --armor --no-tty --yes --passphrase-fd 0 "$FILE" && echo done.
-done
\ No newline at end of file
+done