File tree Expand file tree Collapse file tree 1 file changed +1
-15
lines changed Expand file tree Collapse file tree 1 file changed +1
-15
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ SYSTEM=${YDB_INSTALL_TEST_SYSTEM:-$(uname -s)} # $(uname -o) is not supported on
33
33
MACHINE=${YDB_INSTALL_TEST_MACHINE:- $(uname -m)}
34
34
35
35
GOOS=" "
36
- GOARCH=" "
37
36
YDB_BIN=" ydb"
38
37
SHELL_NAME=$( basename " ${SHELL} " )
39
38
@@ -57,19 +56,6 @@ case ${SYSTEM} in
57
56
;;
58
57
esac
59
58
60
- case ${MACHINE} in
61
- x86_64 | amd64 | i686-64)
62
- GOARCH=" amd64"
63
- ;;
64
- arm64)
65
- GOARCH=" arm64"
66
- ;;
67
- * )
68
- printf " '%s' machines are not supported yet, or something is going wrong.\\ n%s" " ${MACHINE} " " ${CONTACT_SUPPORT_MESSAGE} "
69
- exit 1
70
- ;;
71
- esac
72
-
73
59
DEFAULT_RC_PATH=" ${HOME} /.bashrc"
74
60
75
61
if [ " ${SHELL_NAME} " != " bash" ]; then
@@ -153,7 +139,7 @@ trap cleanup EXIT
153
139
154
140
# Download and show progress.
155
141
TMP_YDB=" ${TMP_INSTALL_PATH} /${YDB_BIN} "
156
- curl_with_retry " ${YDB_STORAGE_URL} /release/${YDB_VERSION} /${GOOS} /${GOARCH} /${YDB_BIN} " -o " ${TMP_YDB} "
142
+ curl_with_retry " ${YDB_STORAGE_URL} /release/${YDB_VERSION} /${GOOS} /amd64 /${YDB_BIN} " -o " ${TMP_YDB} "
157
143
158
144
chmod +x " ${TMP_YDB} "
159
145
# Check that all is ok, and print full version to stdout.
You can’t perform that action at this time.
0 commit comments