summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Ippolito <marcoippolito54@gmail.com>2023-05-14 17:20:40 +0200
committerGitHub <noreply@github.com>2023-05-14 15:20:40 +0000
commitd27301df44813480898837c0c7d666fdd3763de2 (patch)
tree005ebdc385509209731a0bf1277a7cd2da695583
parent9f3aacbc27ac3f377d225ecd51aecb0f3de12566 (diff)
downloadnode-new-d27301df44813480898837c0c7d666fdd3763de2.tar.gz
tools: debug log for nghttp3
PR-URL: https://github.com/nodejs/node/pull/47992 Refs: https://github.com/nodejs/node/pull/47576 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
-rwxr-xr-xtools/dep_updaters/update-nghttp3.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/dep_updaters/update-nghttp3.sh b/tools/dep_updaters/update-nghttp3.sh
index cc14096977..a3c035d871 100755
--- a/tools/dep_updaters/update-nghttp3.sh
+++ b/tools/dep_updaters/update-nghttp3.sh
@@ -20,6 +20,8 @@ NGHTTP3_VERSION_H="$DEPS_DIR/ngtcp2/nghttp3/lib/includes/nghttp3/version.h"
CURRENT_VERSION=$(grep "#define NGHTTP3_VERSION" "$NGHTTP3_VERSION_H" | sed -n "s/^.*VERSION \"\(.*\)\"/\1/p")
+echo "Comparing $NEW_VERSION with $CURRENT_VERSION"
+
if [ "$NEW_VERSION" = "$CURRENT_VERSION" ]; then
echo "Skipped because http3 is on the latest version."
exit 0