Files
2025-03-09 17:02:12 +01:00

11 lines
281 B
Bash

if [[ "$OSTYPE" == "linux-gnu"* ]]; then
MACHINE_TYPE=`uname -m`
if [[ "$MACHINE_TYPE" == "aarch64"* ]]; then
IRON_PLATFORM=linux_arm64
elif [[ "$MACHINE_TYPE" == "x86_64"* ]]; then
IRON_PLATFORM=linux_x64
fi
elif [[ "$OSTYPE" == "darwin"* ]]; then
IRON_PLATFORM=macos
fi