From 2a19b46ab7eb5d2d605c41eb534bd45d90bc8d27 Mon Sep 17 00:00:00 2001 From: timquinlan Date: Tue, 3 Oct 2023 17:58:26 -0400 Subject: [PATCH] update to gateway offline install docs, 2 typos, 2 command additions (#10027) --- docs/ides/gateway.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/ides/gateway.md b/docs/ides/gateway.md index 0c863bc394..239b561afc 100644 --- a/docs/ides/gateway.md +++ b/docs/ides/gateway.md @@ -223,7 +223,8 @@ To install both backends and clients, you will need to run two commands. **Backends** ```shell -./jetbrains-clients-downloader-linux-x86_64-1867/bin4/jetbrains-clients-downloader --products-filter --build-filter --platforms-filter linux-x64,windows-x64,osx-x64 --download-backends ~/backends +mkdir ~/backends +./jetbrains-clients-downloader-linux-x86_64-1867/bin/jetbrains-clients-downloader --products-filter --build-filter --platforms-filter linux-x64,windows-x64,osx-x64 --download-backends ~/backends ``` **Clients** @@ -231,7 +232,8 @@ To install both backends and clients, you will need to run two commands. This is the same command as above, with the `--download-backends` flag removed. ```shell -./jetbrains-clients-downloader-linux-x86_64-1867/bin4/jetbrains-clients-downloader --products-filter --build-filter --platforms-filter linux-x64,windows-x64,osx-x64 ~/clients +mkdir ~/clients +./jetbrains-clients-downloader-linux-x86_64-1867/bin/jetbrains-clients-downloader --products-filter --build-filter --platforms-filter linux-x64,windows-x64,osx-x64 ~/clients ``` We now have both clients and backends installed.