Skip to content
Snippets Groups Projects
Commit 0b0d06b2 authored by bpresles's avatar bpresles
Browse files

feat(arm) Support for ARM64

parent 5a35a676
No related branches found
No related tags found
1 merge request!1375feat(arm) Support for ARM64
......@@ -7,10 +7,15 @@ export NVM_DIR="$HOME/.nvm"
# Prepare
NODE_VERSION=10.22.1
ARCH="`uname -m | sed -e \"s/86_//\"`"
NVER="v$NODE_VERSION"
DUNITER_TAG=$1
ARCH="`uname -m | sed -e \"s/86_//\"`"
if [[ "$ARCH" = "aarch64" ]]
then
ARCH="arm64"
fi
# Folders
INITIAL_DIRECTORY=`pwd`
ROOT="/tmp/build_duniter"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment