mirror of
https://github.com/openfaas/faasd.git
synced 2025-06-27 17:23:24 +00:00
Fix check for arch in verify_system
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
This commit is contained in:
@ -37,7 +37,8 @@ fi
|
||||
|
||||
verify_system() {
|
||||
|
||||
if [ $arch == "armv7l" ]; then
|
||||
arch=$(uname -m)
|
||||
if [ "$arch" == "armv7l" ]; then
|
||||
fatal 'faasd requires a 64-bit Operating System, see: https://github.com/openfaas/faasd/issues/364'
|
||||
fi
|
||||
|
||||
|
Reference in New Issue
Block a user