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
# Detect 64 bit linux systems with 32 bit userland and force 32 bit compilationif [ $CFG_OSTYPE= unknown-linux-gnu -a$CFG_CPUTYPE= x86_64 ]
then
file -L "$SHELL"| grep -q "x86[_-]64"
this check fails with 1, as /bin/sh on default ubuntu 14.04 has an empty $SHELL.
A trivial fix is to use /bin/bash in shebang and update the rustup docs as appropriate.