From 73365905ec081039d19ad6355a2c541c5895344f Mon Sep 17 00:00:00 2001 From: Chengzhong Wu Date: Sun, 19 Oct 2025 23:42:21 +0100 Subject: [PATCH] tools: limit inspector protocol PR title length Co-authored-by: Antoine du Hamel --- tools/dep_updaters/update-inspector-protocol.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/dep_updaters/update-inspector-protocol.sh b/tools/dep_updaters/update-inspector-protocol.sh index 713b7e14c4d28d..8637647b23fcb1 100755 --- a/tools/dep_updaters/update-inspector-protocol.sh +++ b/tools/dep_updaters/update-inspector-protocol.sh @@ -37,7 +37,7 @@ python "$BASE_DIR/tools/inspector_protocol/roll.py" \ --node_src_downstream "$BASE_DIR" \ --force -NEW_VERSION=$(grep "Revision:" "$DEPS_DIR/inspector_protocol/README.node" | sed -n "s/^Revision: \(\\w*\)/\1/p") +NEW_VERSION=$(grep "Revision:" "$DEPS_DIR/inspector_protocol/README.node" | sed -n 's/^Revision: \([[:xdigit:]]\{36\}\).*$/\1/p') # Update the version number on maintaining-dependencies.md # and print the new version as the last line of the script as we need