Skip to content

Commit

Permalink
up-generic.sh: detect arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
RandyMcMillan committed Sep 17, 2021
1 parent 07a42d9 commit 0e7a3a7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion up-generic.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
#This is for internal testing only
: ${ARCH:=$(uname -m)-linux-gnu}
SYSTEM_ARCH=$(uname -m)
if [ "$SYSTEM_ARCH" = arm64 ]; then
ARCH=aarch64-linux-gnu
fi

: ${ARCH:=$ARCH}
: ${bitcoind=10}
: ${lnd=10}
: ${tor=10}
Expand Down

0 comments on commit 0e7a3a7

Please sign in to comment.