We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80325bf commit dd817c8Copy full SHA for dd817c8
1 file changed
README.md
@@ -63,7 +63,7 @@ To download the latest release, run:
63
64
```sh
65
# for ARM systems, set ARCH to: `arm64`, `armv6` or `armv7`
66
-ARCH=amd64
+ARCH=$(uname -m | sed 's/x86_64/amd64/' | sed 's/aarch64/arm64/')
67
PLATFORM=$(uname -s)_$ARCH
68
69
curl -sLO "https://github.com/eksctl-io/eksctl/releases/latest/download/eksctl_$PLATFORM.tar.gz"
@@ -103,7 +103,7 @@ Optionally, verify the checksum:
103
104
105
106
107
PLATFORM=windows_$ARCH
108
109
curl -sLO "https://github.com/eksctl-io/eksctl/releases/latest/download/eksctl_$PLATFORM.zip"
0 commit comments