Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/apache/directory-studio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorEmmanuel Lecharny <elecharny@apache.org>2010-09-18 00:48:12 +0400
committerEmmanuel Lecharny <elecharny@apache.org>2010-09-18 00:48:12 +0400
commitd10f391f3e2c3ad3b264975e928f9b32384260e7 (patch)
treeca46a4264b5ba6920d025988b6b5c9fec0c8301a /tools
parent6168114cbc844bd8158cd7a808d8120af1ba92ef (diff)
removed the bizarre characters
git-svn-id: https://svn.apache.org/repos/asf/directory/studio/trunk@998311 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'tools')
-rw-r--r--tools/sign.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/sign.sh b/tools/sign.sh
index c0ff28787..6c957eefc 100644
--- a/tools/sign.sh
+++ b/tools/sign.sh
@@ -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 "*.md5″ -or -name "*.sha1″ -or -name "*.
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