Commit 65dc5640 authored by Michał Siwek's avatar Michał Siwek

Fix installation script multiarch bug

parent d2ac1455
......@@ -9,7 +9,7 @@ CREW_PACKAGES_PATH=$CREW_LIB_PATH/packages
user=$(whoami)
architecture=$(uname -m)
if [ $architecture != "i686" ] || [ $architecture != "x86_64" ]; then
if [ $architecture != "i686" ] && [ $architecture != "x86_64" ]; then
echo 'Your device is not supported by Chromebrew yet.'
exit 1;
fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment