Skip to content
This repository was archived by the owner on Jul 15, 2023. It is now read-only.

Update clone directory in README #33

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,15 @@ Once this is installed, go to the Code debug viewlet and select the configuratio

You can set up a development environment for debugging the extension during extension development.

First make sure you do not have the extension installed in `~/.vscode/extensions`. Then clone the repo somewhere else on your machine, run `npm install` and open a development instance of Code.
First make sure you do not have the extension installed in `~/.vscode/extensions` and that you have TypeScript installed. Then clone the repo somewhere else on your machine, run `npm install && tsc -p .` and open a development instance of Code.

```bash
rm -rf ~/.vscode/extensions/lukehoban.Go
cd ~
git clone https://github.com/Microsoft/vscode-go
cd go-code
cd vscode-go
npm install
tsc -p .
code .
```

Expand Down