mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 02:42:58 +00:00
Don't print error message on 32bit platforms
This commit is contained in:
parent
7fb6b71d52
commit
09d6e73b0a
1 changed files with 3 additions and 1 deletions
|
@ -1180,7 +1180,9 @@ FTLdownload() {
|
|||
binary="pihole-FTL-linux-x86_64"
|
||||
else
|
||||
# Something else - we try to use 32bit executable and warn the user
|
||||
echo "Not able to detect architecture"
|
||||
if [[ ! $machine == i686 ]]; then
|
||||
echo "Not able to detect architecture, trying 32bit executable"
|
||||
fi
|
||||
binary="pihole-FTL-linux-x86_32"
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue