diff options
author | Darren Tucker <dtucker@dtucker.net> | 2022-03-26 22:01:31 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2022-03-26 22:01:31 +1100 |
commit | 4bbe815ba974b4fd89cc3fc3e3ef1be847a0befe (patch) | |
tree | 2839da2470c3a9bdc60864b58eda3dd42ef6fa69 /.github/setup_ci.sh | |
parent | f5cdd3b3c275dffaebfca91df782dca29975e9ac (diff) | |
download | openssh-git-4bbe815ba974b4fd89cc3fc3e3ef1be847a0befe.tar.gz |
Drop leading "v" from release version identifier.
It's present in the git tags but not in the release tarball names.
Also drop extra "/" from URL path.
Diffstat (limited to '.github/setup_ci.sh')
-rwxr-xr-x | .github/setup_ci.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/setup_ci.sh b/.github/setup_ci.sh index a565d6b7..a3bb8587 100755 --- a/.github/setup_ci.sh +++ b/.github/setup_ci.sh @@ -80,7 +80,7 @@ for TARGET in $TARGETS; do INSTALL_LIBRESSL=$(echo ${TARGET} | cut -f2 -d-) case ${INSTALL_LIBRESSL} in master) ;; - *) INSTALL_LIBRESSL="v$(echo ${TARGET} | cut -f2 -d-)" ;; + *) INSTALL_LIBRESSL="$(echo ${TARGET} | cut -f2 -d-)" ;; esac PACKAGES="${PACKAGES} putty-tools" ;; @@ -131,7 +131,7 @@ if [ ! -z "${INSTALL_LIBRESSL}" ]; then ./configure --prefix=/opt/libressl && make -j2 && sudo make install) else - LIBRESSL_URLBASE=https://cdn.openbsd.org/pub/OpenBSD/LibreSSL/ + LIBRESSL_URLBASE=https://cdn.openbsd.org/pub/OpenBSD/LibreSSL (cd ${HOME} && wget ${LIBRESSL_URLBASE}/libressl-${INSTALL_LIBRESSL}.tar.gz && tar xfz libressl-${INSTALL_LIBRESSL}.tar.gz && |