diff --git a/home.admin/97addMobileWalletLNDconnect.sh b/home.admin/97addMobileWalletLNDconnect.sh index ba294695a..9fc7a770e 100755 --- a/home.admin/97addMobileWalletLNDconnect.sh +++ b/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} ***" diff --git a/home.admin/97addMobileWalletZeus.sh b/home.admin/97addMobileWalletZeus.sh index 457acd542..a135e7106 100644 --- a/home.admin/97addMobileWalletZeus.sh +++ b/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} ***"