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: 1 addition & 4 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,8 @@ fi
LIBC_INFO=$(ldd --version 2>&1 | head -n 1)
if echo "$LIBC_INFO" | grep -iF "musl"; then
LIBC_SUFFIX="-musl"
elif echo "$LIBC_INFO" | grep -iF "gnu"; then
LIBC_SUFFIX="-gnu"
else
echo -e "${RED}Unable to determine libc type. Unsupported system.${NC}"
exit 1
LIBC_SUFFIX="-gnu"
fi

# Get the latest release version from GitHub
Expand Down