This repository has been archived on 2026-01-05. You can view files and clone it, but cannot push or open issues/pull-requests.
|
#!/bin/sh
|
|
launch_arch="$(uname -m)"
|
|
if [ "$(sysctl -in sysctl.proc_translated)" = "1" ]
|
|
then
|
|
launch_arch="arm64"
|
|
fi
|
|
|
|
arch -$launch_arch {0} {1}
|