This repository has been archived on 2024-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
Clash.Meta/docker/file-name.sh
2023-03-01 13:41:25 +08:00

25 lines
459 B
Bash

#!/bin/sh
os="clash.meta-linux-"
case $TARGETPLATFORM in
"linux/amd64")
arch="amd64-compatible"
;;
"linux/386")
arch="386"
;;
"linux/arm64")
arch="arm64"
;;
"linux/arm/v7")
arch="armv7"
;;
"riscv64")
arch="riscv64"
;;
*)
echo "Unknown architecture"
exit 1
;;
esac
file_name="$os$arch-$(cat bin/version.txt)"
echo $file_name