From 610dada6360b8cbfbed29974a94e206368f52714 Mon Sep 17 00:00:00 2001 From: Alexey Korolev Date: Fri, 4 Oct 2019 10:04:16 +0300 Subject: [PATCH] Edit build configuration in 2018-11-19-vscode.md --- 2018-11-19-vscode.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/2018-11-19-vscode.md b/2018-11-19-vscode.md index 233d2c6b..0207b835 100644 --- a/2018-11-19-vscode.md +++ b/2018-11-19-vscode.md @@ -133,17 +133,17 @@ and build the Swift project. ```terminal $ git clone https://github.com/apple/sourcekit-lsp.git $ cd sourcekit-lsp -$ swift build +$ swift build -c release ``` If successful, the completed binary will be available from -of the hidden `.build/debug` directory. +of the hidden `.build/release` directory. Move that binary to a standard directory in your `$PATH`, like `/usr/local/bin` or `/usr/bin`. ```terminal -$ mv .build/debug/sourcekit-lsp /usr/local/bin +$ mv .build/release/sourcekit-lsp /usr/local/bin ``` You can verify that everything is working as expected