Add extra artifact for linuxstatic, change install script to use it.

This commit is contained in:
Sander Declerck 2026-01-06 09:02:22 +01:00
parent d530b9a1de
commit ff4618602a
No known key found for this signature in database
2 changed files with 12 additions and 2 deletions

View file

@ -34,7 +34,7 @@ error() {
# Detect OS
detect_os() {
case "$(uname -s)" in
Linux*) echo "linux" ;;
Linux*) echo "linuxstatic" ;;
Darwin*) echo "macos" ;;
*) error "Unsupported operating system: $(uname -s)" ;;
esac