Browse Source

Fix signing script

 + It was leading to errors when there was no '.sig' file.
Leo 9 years ago
parent
commit
7db5623319
1 changed files with 1 additions and 1 deletions
  1. 1 1
      sign-dist.sh

+ 1 - 1
sign-dist.sh

@@ -8,7 +8,7 @@ fi
 cd dist
 cd dist
 # File to signed
 # File to signed
 # MEMO: -e: regexp, -v: not matched
 # MEMO: -e: regexp, -v: not matched
-tobe_sig=$(ls | grep -e ".tar" -e ".zip" -v ".sig")
+tobe_sig=$(ls | grep -e ".tar" -e ".zip" | grep -v ".sig")
 
 
 for element in ${tobe_sig}
 for element in ${tobe_sig}
 do
 do