mirror of
https://gitee.com/spark-store-project/spark-store
synced 2025-06-06 23:19:50 +08:00
18 lines
231 B
Bash
Executable File
18 lines
231 B
Bash
Executable File
#!/bin/bash
|
|
|
|
HERE=$(dirname $0)
|
|
|
|
case `uname -m` in
|
|
x86_64)
|
|
sender_appendix="amd64"
|
|
;;
|
|
aarch64)
|
|
sender_appendix="arm64"
|
|
;;
|
|
loongarch64)
|
|
sender_appendix="loong64"
|
|
;;
|
|
esac
|
|
|
|
${HERE}/sender-d-${sender_appendix} $@
|