From 989b701283f1049aa56db05490f06b4bb1f9fcce Mon Sep 17 00:00:00 2001 From: Tim Quinlan Date: Tue, 3 Oct 2023 17:00:31 -0400 Subject: [PATCH] update to gateway offline install docs, 2 typos, 2 command additions --- 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 0c863bc39423f..239b561afc94f 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.