We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fed6cf commit 3cacd91Copy full SHA for 3cacd91
1 file changed
libexec/tfenv-install
@@ -88,7 +88,12 @@ case "$(uname -m)" in
88
# There is no arm64 support for versions:
89
# < 0.11.15
90
# >= 0.12.0, < 0.12.30
91
- if [[ "${version}" =~ 0\.(([0-9]|1[0-1])).[0-1][0-4]?$ || "${version}" =~ 0\.12\.[0-2][0-9]?$ ]]; then
+ # >= 0.13.0, < 0.13.5
92
+ if [[ "${version}" =~ 0\.(([0-9]|10))\.\d* ||
93
+ "${version}" =~ 0\.11\.(([0-9]|1[0-4]))$ ||
94
+ "${version}" =~ 0\.12\.(([0-9]|[1-2][0-9]))$ ||
95
+ "${version}" =~ 0\.13\.[0-4]$
96
+ ]]; then
97
TFENV_ARCH="${TFENV_ARCH:-amd64}";
98
else
99
TFENV_ARCH="${TFENV_ARCH:-arm64}";
0 commit comments