Skip to content
Snippets Groups Projects
Commit 2639feeb authored by Cédric Moreau's avatar Cédric Moreau
Browse files

Fix: differentiate x86 and x64

parent 34c1d228
No related branches found
No related tags found
No related merge requests found
...@@ -93,7 +93,7 @@ install_ucoin_from_git() { ...@@ -93,7 +93,7 @@ install_ucoin_from_git() {
local NVER="0.12.6"; local NVER="0.12.6";
local ARCH="86" local ARCH="86"
local X64=`uname -r | grep "x86_64"` local X64=`uname -r | grep "x86_64"`
if [ ! -z X64 ]; then if [ ! -z "$X64" ]; then
ARCH="64" ARCH="64"
fi fi
local NODEJS_FILENAME=node-v${NVER}-linux-x${ARCH} local NODEJS_FILENAME=node-v${NVER}-linux-x${ARCH}
...@@ -126,7 +126,7 @@ install_ucoin_from_git() { ...@@ -126,7 +126,7 @@ install_ucoin_from_git() {
install_ucoin_as_script() { install_ucoin_as_script() {
local ARCH="32" local ARCH="32"
local X64=`uname -r | grep "x86_64"` local X64=`uname -r | grep "x86_64"`
if [ ! -z X64 ]; then if [ ! -z "$X64" ]; then
ARCH="64" ARCH="64"
fi fi
local UCOIN_SOURCE_LOCAL local UCOIN_SOURCE_LOCAL
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment