Skip to content

Commit

Permalink
Fix OPENSSL_VERSION unbound variable
Browse files Browse the repository at this point in the history
  • Loading branch information
martinburchell committed Jul 24, 2023
1 parent 89d9047 commit d0ef19a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/build_client.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ wget --retry-on-http-error=429 --waitretry=300 --tries=20 https://gitlab.com/lib
tar xzf eigen-${EIGEN_VERSION}.tar.gz

# See also tablet_qt/tools/build_qt.py build_openssl()
OPENSSL_VERSION_FILE=${GITHUB_WORKSPACE}/tablet_qt/openssl_version.txt
OPENSSL_VERSION=$(<$OPENSSL_VERSION_FILE)
cd ${CAMCOPS_QT6_BASE_DIR}
OPENSSL_DIR=${CAMCOPS_QT6_BASE_DIR}/openssl_linux_x86_64/openssl-${OPENSSL_VERSION}
mkdir -p ${OPENSSL_DIR}
cd ${OPENSSL_DIR}
OPENSSL_VERSION_FILE=${GITHUB_WORKSPACE}/tablet_qt/openssl_version.txt
OPENSSL_VERSION=$(<$OPENSSL_VERSION_FILE)
wget --retry-on-http-error=429 --waitretry=300 --tries=20 https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz
tar xzf openssl-${OPENSSL_VERSION}.tar.gz
cd openssl-${OPENSSL_VERSION}
Expand Down

0 comments on commit d0ef19a

Please sign in to comment.