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

View File

@@ -36,8 +36,8 @@ if ! $(cd "${SOURCE_DIR}" && git diff --exit-code >/dev/null); then
exit 1
fi
if [[ "$(node --version)" != "v22.13.1" ]]; then
echo "This script requires node 22.13.1"
if [[ "$(node --version)" != "v22.17.0" ]]; then
echo "This script requires node 22.17.0"
exit 1
fi