diff options
author | Viktor Szakats <commit@vsz.me> | 2023-12-10 22:52:31 +0000 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2024-03-03 09:18:36 -0600 |
commit | 4764faea673501fcf4a1b3c6d93772619d162df4 (patch) | |
tree | 4e69ec9ff7248f64cbc0b1748b39d0266524e124 | |
parent | a4d432b4a10da876eff614ac47bd1acb0259c5b0 (diff) | |
download | portable-4764faea673501fcf4a1b3c6d93772619d162df4.tar.gz portable-4764faea673501fcf4a1b3c6d93772619d162df4.tar.bz2 portable-4764faea673501fcf4a1b3c6d93772619d162df4.zip |
check-release.sh: use HTTPS when downloading sources
-rwxr-xr-x | check-release.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/check-release.sh b/check-release.sh index bdafa08..c5f9c5f 100755 --- a/check-release.sh +++ b/check-release.sh | |||
@@ -26,7 +26,7 @@ if [ ! -e releases/$tarball ]; then | |||
26 | mkdir -p releases | 26 | mkdir -p releases |
27 | rm -f $tarball | 27 | rm -f $tarball |
28 | if [ -z "$LIBRESSL_SSH" ]; then | 28 | if [ -z "$LIBRESSL_SSH" ]; then |
29 | $download http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/$tarball releases/ | 29 | $download https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/$tarball releases/ |
30 | mv $tarball releases | 30 | mv $tarball releases |
31 | else | 31 | else |
32 | scp $LIBRESSL_SSH/$tarball releases | 32 | scp $LIBRESSL_SSH/$tarball releases |