diff options
Diffstat (limited to 'app/crypt/gnupg2/gnupg2.SlackBuild')
-rwxr-xr-x | app/crypt/gnupg2/gnupg2.SlackBuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/crypt/gnupg2/gnupg2.SlackBuild b/app/crypt/gnupg2/gnupg2.SlackBuild index 8f0304d7..80f3cf30 100755 --- a/app/crypt/gnupg2/gnupg2.SlackBuild +++ b/app/crypt/gnupg2/gnupg2.SlackBuild @@ -80,10 +80,10 @@ EOKEY SRC="$SRC_NAME-$VERSION.tar.bz2" URL="ftp://ftp.gnupg.org/gcrypt/gnupg/$SRC" -if [ ! -f "$SRC_DIR/$SRC" ] || ! bzip2 -t "$SRC_DIR/$SRC" 2> /dev/null; then +if [ ! -s "$SRC_DIR/$SRC" ] || ! bzip2 -t "$SRC_DIR/$SRC" 2> /dev/null; then wget "$URL" -O "$SRC_DIR/$SRC" || exit $ERROR_WGET fi -if [ ! -f "$SRC_DIR/$SRC.sig" ]; then +if [ ! -s "$SRC_DIR/$SRC.sig" ]; then wget "$URL.sig" -O "$SRC_DIR/$SRC.sig" || exit $ERROR_WGET fi |