From 3b512f979c8d0101df120210b0678647a83797b8 Mon Sep 17 00:00:00 2001 From: "Alex Ellis (OpenFaaS Ltd)" Date: Tue, 24 Dec 2019 14:34:32 +0000 Subject: [PATCH] Fix arm switch Signed-off-by: Alex Ellis (OpenFaaS Ltd) --- cmd/up.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cmd/up.go b/cmd/up.go index 8490aab..3d9adfa 100644 --- a/cmd/up.go +++ b/cmd/up.go @@ -34,11 +34,12 @@ func runUp(_ *cobra.Command, _ []string) error { clientSuffix = "" break case "armhf": - case "arm64": - clientSuffix = clientArch + case "armv7l": + clientSuffix = "-armhf" break + case "arm64": case "aarch64": - clientSuffix = "arm64" + clientSuffix = "-arm64" } services := makeServiceDefinitions(clientSuffix)