Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: make
version_check.sh
script tool-agnostic (#2297)
## Description <!-- Describe this change, how it works, and the motivation behind it. --> Resolves #2270 Check node version using `node --version` instead of `nvm`. ```bash $ node --version v20.11.1 $ nvm zsh: command not found: nvm # before change $ ./scripts/build.sh Starting Kurtosis Build... node 20.11 not installed. Please install it with nvm install 20.11 # after change $ ./scripts/build.sh Starting Kurtosis Build... Minimum node version 20.11 expected. Found 20.11 ... ok Minimum GO version 1.20 expected. Found 1.20.14 ... ok ... ``` ## REMINDER: Tag Reviewers, so they get notified to review ## Is this change user facing? NO <!-- If yes, please add the "user facing" label to the PR --> <!-- If yes, don't forget to include docs changes where relevant --> ## References (if applicable) <!-- Add relevant Github Issues, Discord threads, or other helpful information. --> <!-- You can auto-close issues by putting "Fixes #XXXX" here. -->
- Loading branch information