diff --git a/foundryup/foundryup b/foundryup/foundryup index a3a6d1bb58823..9379ca5183729 100755 --- a/foundryup/foundryup +++ b/foundryup/foundryup @@ -4,7 +4,7 @@ set -eo pipefail # NOTE: if you make modifications to this script, please increment the version number. # Major / minor: incremented for each stable release of Foundry. # Patch: incremented for each change between stable releases. -FOUNDRYUP_INSTALLER_VERSION="1.0.1" +FOUNDRYUP_INSTALLER_VERSION="1.1.0" BASE_DIR=${XDG_CONFIG_HOME:-$HOME} FOUNDRY_DIR=${FOUNDRY_DIR:-"$BASE_DIR/.foundry"} @@ -118,7 +118,7 @@ main() { PLATFORM=$(tolower "${FOUNDRYUP_PLATFORM:-$uname_s}") EXT="tar.gz" case $PLATFORM in - linux) ;; + linux|alpine) ;; darwin|mac*) PLATFORM="darwin" ;; @@ -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 }