You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The setup shell script expects only 64 bit architecture, but even on a 64 bit machine it appears the the git shell launched from git desktop sets arch to i686, which is the 32 bit equivalent. So perhaps it would make sense to add it in, as in:
case $arch in
"i686")
export ARCH_TAG="x86_64-0.6.1-preview"
;;
"x86_64")
export ARCH_TAG="x86_64-0.6.1-preview"
;;
The text was updated successfully, but these errors were encountered:
The setup shell script expects only 64 bit architecture, but even on a 64 bit machine it appears the the git shell launched from git desktop sets arch to i686, which is the 32 bit equivalent. So perhaps it would make sense to add it in, as in:
case $arch in
"i686")
export ARCH_TAG="x86_64-0.6.1-preview"
;;
"x86_64")
export ARCH_TAG="x86_64-0.6.1-preview"
;;
The text was updated successfully, but these errors were encountered: