From 50234e5f04338011d72f855992383660003f2e3d Mon Sep 17 00:00:00 2001 From: Ben Potter Date: Tue, 4 Feb 2020 12:10:32 -0500 Subject: [PATCH] Reflects new location of vscodeVersion (#1327) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6363b2b1..095c7a44 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ before building. ```shell export OUT=/path/to/output/build # Optional if only building. Required if also developing. -yarn build $vscodeVersion $codeServerVersion # See travis.yml for the VS Code version to use. +yarn build $vscodeVersion $codeServerVersion # See scripts/ci.bash for the VS Code version to use. # The code-server version can be anything you want. node /path/to/output/build/out/vs/server/main.js # You can run the built JavaScript with Node. yarn binary $vscodeVersion $codeServerVersion # Or you can package it into a binary. @@ -141,7 +141,7 @@ before developing. ```shell git clone https://github.com/microsoft/vscode cd vscode -git checkout ${vscodeVersion} # See travis.yml for the version to use. +git checkout ${vscodeVersion} # See scripts/ci.bash for the version to use. yarn git clone https://github.com/cdr/code-server src/vs/server cd src/vs/server -- GitLab