Skip to content

feat: add Alpine Linux support to foundryup #10257

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions foundryup/foundryup
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ main() {
PLATFORM=$(tolower "${FOUNDRYUP_PLATFORM:-$uname_s}")
EXT="tar.gz"
case $PLATFORM in
linux) ;;
linux|alpine) ;;
darwin|mac*)
PLATFORM="darwin"
;;
Expand Down Expand Up @@ -272,7 +272,7 @@ OPTIONS:
-p, --path Build and install a local repository
-j, --jobs Number of CPUs to use for building Foundry (default: all CPUs)
--arch Install a specific architecture (supports amd64 and arm64)
--platform Install a specific platform (supports win32, linux, and darwin)
--platform Install a specific platform (supports win32, linux, darwin and alpine)
EOF
}

Expand Down