Browse Source

goVersion="1.12.5" and add X86_32

master
openoms 6 years ago
parent
commit
c2b6b2b9d7
  1. 5
      home.admin/97addMobileWalletLNDconnect.sh
  2. 5
      home.admin/97addMobileWalletZeus.sh

5
home.admin/97addMobileWalletLNDconnect.sh

@ -32,13 +32,16 @@ goVersion="1.11"
echo "### Check Framework: GO ###"
goInstalled=$(go version 2>/dev/null | grep -c 'go')
if [ ${goInstalled} -eq 0 ];then
goVersion="1.12.4"
goVersion="1.12.5"
if [ ${isARM} -eq 1 ] || [ ${isAARCH64} -eq 1 ] ; then
goOSversion="armv6l"
fi
if [ ${isX86_64} -eq 1 ] ; then
goOSversion="amd64"
fi
if [ ${isX86_32} -eq 1 ] ; then
goOSversion="386"
fi
echo "*** Installing Go v${goVersion} for ${goOSversion} ***"

5
home.admin/97addMobileWalletZeus.sh

@ -17,13 +17,16 @@ fi
# make sure go is installed
goInstalled=$(go version 2>/dev/null | grep -c 'go')
if [ ${goInstalled} -eq 0 ];then
goVersion="1.12.4"
goVersion="1.12.5"
if [ ${isARM} -eq 1 ] || [ ${isAARCH64} -eq 1 ] ; then
goOSversion="armv6l"
fi
if [ ${isX86_64} -eq 1 ] ; then
goOSversion="amd64"
fi
if [ ${isX86_32} -eq 1 ] ; then
goOSversion="386"
fi
echo "*** Installing Go v${goVersion} for ${goOSversion} ***"

Loading…
Cancel
Save