diff options
author | Rob Austein <sra@hactrn.net> | 2015-07-10 02:15:16 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2015-07-10 02:15:16 +0000 |
commit | 14b094c2ad6ca3731615b1e43febd8fb6d4856f6 (patch) | |
tree | 92f263bc2669ef820c94c5c3f3d2730db544bfa2 /openssl/update-snapshot.sh | |
parent | 94b0f91257ce1a56b3da72a864db626f07702655 (diff) |
Update to OpenSSL 1.0.2d.
svn path=/trunk/; revision=6075
Diffstat (limited to 'openssl/update-snapshot.sh')
-rwxr-xr-x | openssl/update-snapshot.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openssl/update-snapshot.sh b/openssl/update-snapshot.sh index ef5895e7..1ff08bbb 100755 --- a/openssl/update-snapshot.sh +++ b/openssl/update-snapshot.sh @@ -6,7 +6,7 @@ #version="1.0.0-stable-SNAP-$(date +%Y%m%d)" -version="1.0.1m" +version="1.0.2d" tarball="openssl-${version}.tar.gz" @@ -15,7 +15,7 @@ case $version in *) directory=source;; esac -/usr/bin/fetch -m -p "ftp://ftp.openssl.org/${directory}/${tarball}" || exit +/bin/test -f "${tarball}" || /usr/bin/fetch -m -p "ftp://ftp.openssl.org/${directory}/${tarball}" || exit /bin/rm -f openssl |