Skip to content

Commit

Permalink
chore: remove yarn version check in bootstrap (#11493)
Browse files Browse the repository at this point in the history
  • Loading branch information
Maddiaa0 authored Jan 24, 2025
1 parent 6f8912e commit 01f812d
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,15 +98,6 @@ function check_toolchains {
echo "Installation: corepack enable"
exit 1
fi
# Check for yarn version
local yarn_min_version="4.5.2"
local yarn_installed_version=$(yarn --version)
if [[ "$(printf '%s\n' "$yarn_min_version" "$yarn_installed_version" | sort -V | head -n1)" != "$yarn_min_version" ]]; then
encourage_dev_container
echo "Minimum yarn version $yarn_min_version not found (got $yarn_installed_version)."
echo "Installation: yarn set version $yarn_min_version; yarn install"
exit 1
fi
}

function test_all {
Expand Down

0 comments on commit 01f812d

Please sign in to comment.