Browse Source

Changed bin/download to use expr instead of [[

karasz/new-early
Alejandro Mery 17 years ago
parent
commit
92eb86aadf
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      bin/sde-download

+ 1
- 1
bin/sde-download

@ -374,7 +374,7 @@ download_file() {
fi
# unsign .gpg file
if [[ $gzfile = *.gpg ]]; then
if expr "$gzfile" : "*.gpg" > /dev/null; then
gzfile=${gzfile%.gpg}
if [ -f $gzfile.gpg ]; then
echo "unsigning GnuPG file: $gzfile.gpg"

Loading…
Cancel
Save