epiccurious / jade-diy

Securely custody your bitcoin with Open Source software and generic hardware.
MIT No Attribution
12 stars 1 forks source link

Don't run on 32-bit operating systems #37

Open epiccurious opened 7 months ago

epiccurious commented 7 months ago
if [[ $(uname -m) == "i686" ]] ; then
    echo "ERROR: You are using an incompatible 32-bit Operating System."
    echo -e "       Please re-run this script on a modern 64-bit Operating System"
    echo -e "       like macOS or Ubuntu Linux.\n"
    read -srn1 -p "       PRESS ANY KEY to exit... " && echo
    exit 1
fi