Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions foundryup/foundryup
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,9 @@ main() {
# Install by downloading binaries
if [[ ( "$FOUNDRYUP_REPO" == "foundry-rs/foundry" || "$FOUNDRYUP_REPO" == "base/base-anvil" ) && -z "$FOUNDRYUP_BRANCH" && -z "$FOUNDRYUP_COMMIT" ]]; then
if [[ "$FOUNDRYUP_NETWORK" == "base" ]]; then
# Pin bare `base-foundryup` to the Beryl Sepolia release for stable
# testnet bring-up. Flip to v1.1.0 (or stable) once final Beryl ships.
# Pin bare `base-foundryup` to the v1.1.0 (Beryl) release.
# Rolling builds remain available via `base-foundryup --install nightly`.
FOUNDRYUP_VERSION=${FOUNDRYUP_VERSION:-v1.1.0-rc.19}
FOUNDRYUP_VERSION=${FOUNDRYUP_VERSION:-v1.1.0}
else
FOUNDRYUP_VERSION=${FOUNDRYUP_VERSION:-stable}
fi
Expand Down
Loading