Skip to content

Commit

Permalink
feat: node version check in yarn-project/bootstrap.sh (AztecProtoco…
Browse files Browse the repository at this point in the history
  • Loading branch information
benesjan committed Jan 2, 2024
1 parent 9eef247 commit c29e4ee
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions yarn-project/bootstrap.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
#!/usr/bin/env bash
set -eu

# Check node version.
node_version=$(node -v | tr -d 'v')
major=${node_version%%.*}
rest=${node_version#*.}
minor=${rest%%.*}

if (( major < 18 || ( major == 18 && minor < 19 ) )); then
echo "Node.js version is less than 18.19. Exiting."
exit 1
fi

cd "$(dirname "$0")"

CMD=${1:-}
Expand Down

0 comments on commit c29e4ee

Please sign in to comment.