We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58d35cf commit aa70947Copy full SHA for aa70947
1 file changed
tools/dep_updaters/update-openssl.sh
@@ -23,7 +23,10 @@ console.log(tag_name.replace('openssl-', ''));
23
EOF
24
)"
25
26
- NEW_VERSION_NO_RELEASE_1=$(case "$NEW_VERSION" in *quic1) echo "${NEW_VERSION%1}" ;; *) echo "$NEW_VERSION" ;; esac)
+ case "$NEW_VERSION" in
27
+ *quic1) NEW_VERSION_NO_RELEASE_1="${NEW_VERSION%1}" ;;
28
+ *) NEW_VERSION_NO_RELEASE_1="$NEW_VERSION" ;;
29
+ esac
30
VERSION_H="./deps/openssl/config/archs/linux-x86_64/asm/include/openssl/opensslv.h"
31
CURRENT_VERSION=$(grep "OPENSSL_FULL_VERSION_STR" $VERSION_H | sed -n "s/^.*VERSION_STR \"\(.*\)\"/\1/p" | sed 's/+/-/g')
32
echo "Comparing $NEW_VERSION_NO_RELEASE_1 with $CURRENT_VERSION"
0 commit comments