Fix node version in release script

This commit is contained in:
Girish Ramakrishnan
2025-06-25 11:31:53 +02:00
parent 27c4069187
commit 2caf8d6a4e
+2 -2
View File
@@ -36,8 +36,8 @@ if ! $(cd "${SOURCE_DIR}" && git diff --exit-code >/dev/null); then
exit 1 exit 1
fi fi
if [[ "$(node --version)" != "v22.13.1" ]]; then if [[ "$(node --version)" != "v22.17.0" ]]; then
echo "This script requires node 22.13.1" echo "This script requires node 22.17.0"
exit 1 exit 1
fi fi