Skip to content

Commit

Permalink
Fix arm switch
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
  • Loading branch information
alexellis committed Dec 24, 2019
1 parent 456e563 commit 3b512f9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions cmd/up.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 3b512f9

Please sign in to comment.