Skip to content

Commit

Permalink
Fix check for arch in verify_system
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
  • Loading branch information
alexellis committed Jun 12, 2024
1 parent e4848cd commit 4162db4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hack/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 4162db4

Please sign in to comment.