diff options
author | alexv-smirnov <81806911+alexv-smirnov@users.noreply.github.com> | 2022-05-02 00:23:25 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-02 00:23:25 +0300 |
commit | 6976aa78147764324cd48c2b0cd4ed3c32f4c9e5 (patch) | |
tree | c97086b670ba3c7c67f12bd65059795b3296d667 | |
parent | 5b98ecf0c6399c217b3cf06b2886b6d3632dcd53 (diff) | |
parent | 6db2a7222e67e63b6883d56a147733f749c965e6 (diff) | |
download | ydb-6976aa78147764324cd48c2b0cd4ed3c32f4c9e5.tar.gz |
Merge pull request #19 from murka/curl-patch
perf: curl flags
-rw-r--r-- | ydb/docs/en/core/reference/ydb-cli/_includes/install.md | 4 | ||||
-rw-r--r-- | ydb/docs/ru/core/reference/ydb-cli/_includes/install.md | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ydb/docs/en/core/reference/ydb-cli/_includes/install.md b/ydb/docs/en/core/reference/ydb-cli/_includes/install.md index 87c5f298824..7dde39da8e8 100644 --- a/ydb/docs/en/core/reference/ydb-cli/_includes/install.md +++ b/ydb/docs/en/core/reference/ydb-cli/_includes/install.md @@ -9,7 +9,7 @@ To install the {{ ydb-short-name }} CLI, run the command: ```bash - curl https://storage.yandexcloud.net/yandexcloud-ydb/install.sh | bash + curl -sSL https://storage.yandexcloud.net/yandexcloud-ydb/install.sh | bash ``` The script will install the {{ ydb-short-name }} CLI and add the executable file path to the `PATH` environment variable. @@ -27,7 +27,7 @@ To install the {{ ydb-short-name }} CLI, run the command: ```bash - curl https://storage.yandexcloud.net/yandexcloud-ydb/install.sh | bash + curl -sSL https://storage.yandexcloud.net/yandexcloud-ydb/install.sh | bash ``` The script will install the {{ ydb-short-name }} CLI and add the executable file path to the `PATH` environment variable. diff --git a/ydb/docs/ru/core/reference/ydb-cli/_includes/install.md b/ydb/docs/ru/core/reference/ydb-cli/_includes/install.md index bedf4ac02ad..459696a9cfe 100644 --- a/ydb/docs/ru/core/reference/ydb-cli/_includes/install.md +++ b/ydb/docs/ru/core/reference/ydb-cli/_includes/install.md @@ -9,7 +9,7 @@ Чтобы установить {{ ydb-short-name }} CLI, выполните команду: ```bash - curl https://storage.yandexcloud.net/yandexcloud-ydb/install.sh | bash + curl -sSL https://storage.yandexcloud.net/yandexcloud-ydb/install.sh | bash ``` Скрипт установит {{ ydb-short-name }} CLI и добавит путь к исполняемому файлу в переменную окружения `PATH`. @@ -27,7 +27,7 @@ Чтобы установить {{ ydb-short-name }} CLI, выполните команду: ```bash - curl https://storage.yandexcloud.net/yandexcloud-ydb/install.sh | bash + curl -sSL https://storage.yandexcloud.net/yandexcloud-ydb/install.sh | bash ``` Скрипт установит {{ ydb-short-name }} CLI и добавит путь до исполняемого файла в переменную окружения `PATH`. |