]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
Drop leading "v" from release version identifier.
authorDarren Tucker <dtucker@dtucker.net>
Sat, 26 Mar 2022 11:01:31 +0000 (22:01 +1100)
committerDarren Tucker <dtucker@dtucker.net>
Sat, 26 Mar 2022 11:01:31 +0000 (22:01 +1100)
It's present in the git tags but not in the release tarball names.
Also drop extra "/" from URL path.

.github/setup_ci.sh

index a565d6b7e1862649fd3c0de40e5fd40203257241..a3bb8587eab1c290d6c54a6543bf291f1a8a108d 100755 (executable)
@@ -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 &&