Skip to content

Commit

Permalink
Just use the bare versions in the versions file.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmeister2 committed Jan 21, 2024
1 parent 92d82b7 commit a2c9ee3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions scripts/VERSIONS
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# Handled by renovate.json
OPENSSL_VERSION=openssl-3.2.0
OPENSSL_VERSION=3.2.0

# renovate: datasource=github-tags depName=nghttp2/nghttp2 versioning=semver registryUrl=https://github.com
NGHTTP2_VERSION=v1.58.0
NGHTTP2_VERSION=1.58.0
2 changes: 1 addition & 1 deletion scripts/download_nghttp2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
source $SCRIPT_DIR/VERSIONS

# Clone the repository to the specified directory.
git clone --depth 1 --branch ${NGHTTP2_VERSION} https://github.com/nghttp2/nghttp2 $1
git clone --depth 1 --branch v${NGHTTP2_VERSION} https://github.com/nghttp2/nghttp2 $1
2 changes: 1 addition & 1 deletion scripts/download_openssl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
source $SCRIPT_DIR/VERSIONS

# Clone the repository to the specified directory.
git clone --depth 1 --branch ${OPENSSL_VERSION} https://github.com/openssl/openssl $1
git clone --depth 1 --branch openssl-${OPENSSL_VERSION} https://github.com/openssl/openssl $1

0 comments on commit a2c9ee3

Please sign in to comment.