Skip to content
This repository was archived by the owner on Dec 11, 2021. It is now read-only.

Commit

Permalink
Changed arch with uname for finding the architecture in macOS (operat…
Browse files Browse the repository at this point in the history
…or-framework#4705)

Signed-off-by: Pavlos Ratis <[email protected]>
  • Loading branch information
Pavlos Ratis authored Mar 29, 2021
1 parent 4eb50a4 commit 33e4242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/content/en/docs/installation/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ brew install operator-sdk
Set platform information:

```sh
export ARCH=$(case $(arch) in x86_64) echo -n amd64 ;; aarch64) echo -n arm64 ;; *) echo -n $(arch) ;; esac)
export ARCH=$(case $(uname -m) in x86_64) echo -n amd64 ;; aarch64) echo -n arm64 ;; *) echo -n $(uname -m) ;; esac)
export OS=$(uname | awk '{print tolower($0)}')
```

Expand Down

0 comments on commit 33e4242

Please sign in to comment.