From 59f0128d275015187ae3ab649cc0d34c0fbb7faf Mon Sep 17 00:00:00 2001 From: Anmol Sethi Date: Sun, 17 May 2020 21:11:07 -0400 Subject: [PATCH] Shorten static release script horizontally --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3b4daf33..536344ba 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,8 @@ Add the code-server `bin` directory to your `$PATH` to easily execute `code-serv Here is an example script for installing and using a static `code-server` release on Linux: ```bash -curl -sSL https://github.com/cdr/code-server/releases/download/v3.3.0/code-server-3.3.0-linux-amd64.tar.gz | sudo tar -C /usr/local -xz +curl -sSL https://github.com/cdr/code-server/releases/download/v3.3.0/code-server-3.3.0-linux-amd64.tar.gz \ + | sudo tar -C /usr/local -xz sudo mv /usr/local/code-server-3.3.0-linux-amd64 /usr/local/code-server-3.3.0 PATH="/usr/local/code-server-3.3.0/bin:$PATH" code-server -- GitLab