mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-05 13:15:21 +00:00
add aarch64
This commit is contained in:
parent
5878f4dbf0
commit
003c99cb52
|
@ -4,8 +4,17 @@
|
||||||
|
|
||||||
installNgrok() {
|
installNgrok() {
|
||||||
if ! command_exists ngrok; then
|
if ! command_exists ngrok; then
|
||||||
printf "%b\n" "${YELLOW}Installing Ngrok...${RC}"
|
printf "%b\n" "${YELLOW}Installing Ngrok.${RC}"
|
||||||
curl -sSLO https://bin.equinox.io/c/bNyj1mQVY4c/ngrok-v3-stable-linux-amd64.tgz | "$ESCALATION_TOOL" tar -xz -C /usr/local/bin
|
case "$ARCH" in
|
||||||
|
x86_64)
|
||||||
|
url="https://bin.equinox.io/c/bNyj1mQVY4c/ngrok-v3-stable-linux-amd64.tgz"
|
||||||
|
;;
|
||||||
|
aarch64)
|
||||||
|
url="https://bin.equinox.io/c/bNyj1mQVY4c/ngrok-v3-stable-linux-arm64.tgz"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
curl -sSL "$url" -o ngrok.tgz
|
||||||
|
"$ESCALATION_TOOL" tar -xzf ngrok.tgz -C /usr/local/bin
|
||||||
else
|
else
|
||||||
printf "%b\n" "${GREEN}Ngrok is already installed.${RC}"
|
printf "%b\n" "${GREEN}Ngrok is already installed.${RC}"
|
||||||
fi
|
fi
|
||||||
|
@ -13,4 +22,4 @@ installNgrok() {
|
||||||
|
|
||||||
checkEnv
|
checkEnv
|
||||||
checkEscalationTool
|
checkEscalationTool
|
||||||
installNgrok
|
installNgrok
|
||||||
|
|
Loading…
Reference in New Issue
Block a user