diff options
author | Brent Cook <busterb@gmail.com> | 2024-04-08 20:05:29 -0500 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2024-04-08 20:28:17 -0500 |
commit | 7a5a03ef8504e2b3faf1f34a8d38d3e6e0dfa18a (patch) | |
tree | b602308f10444c2867c844ef4ef3ad012990f066 /update.sh | |
parent | 624f5579fa54a6b6df982d2481f43b8d0ca8729e (diff) | |
download | portable-7a5a03ef8504e2b3faf1f34a8d38d3e6e0dfa18a.tar.gz portable-7a5a03ef8504e2b3faf1f34a8d38d3e6e0dfa18a.tar.bz2 portable-7a5a03ef8504e2b3faf1f34a8d38d3e6e0dfa18a.zip |
use a specific version number in test scripts
This avoids issue reported in #1041 with file glob confusing cd.
Also remove extra newline from VERSION when update.sh runs.
Diffstat (limited to 'update.sh')
-rwxr-xr-x | update.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -151,7 +151,7 @@ else | |||
151 | $CP $libcrypto_src/opensslv.h include/openssl | 151 | $CP $libcrypto_src/opensslv.h include/openssl |
152 | fi | 152 | fi |
153 | 153 | ||
154 | awk '/LIBRESSL_VERSION_TEXT/ {print $4}' < include/openssl/opensslv.h | cut -d\" -f1 > VERSION | 154 | awk '/LIBRESSL_VERSION_TEXT/ {print $4}' < include/openssl/opensslv.h | cut -d\" -f1 | head -n1 > VERSION |
155 | echo "LibreSSL version `cat VERSION`" | 155 | echo "LibreSSL version `cat VERSION`" |
156 | 156 | ||
157 | # copy libcrypto source | 157 | # copy libcrypto source |