Skip to content

Commit 1d88bce

Browse files
committed
fix: Update shell calling and readme
Closes #40
1 parent cb32677 commit 1d88bce

9 files changed

+264
-80
lines changed

.vscodeignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ client/**
1010
target
1111
static
1212
examples
13-
.*
13+
.*/**
1414
.github
1515
Cargo.*
1616
pnpm-lock.yaml
1717
*.vsix
18-
syntaxes/gen/
18+
syntaxes/gen/
19+
testing/

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ Nightly binaries are also available for major platforms, please check [Releases]
3131

3232
```bash
3333
# One-line
34-
curl -L https://github.com/Desdaemon/odoo-lsp/releases/download/nightly/odoo-lsp-x86_64-unknown-linux-musl.tgz | tar -xzvf -
34+
curl -L https://github.com/Desdaemon/odoo-lsp/releases/download/latest/odoo-lsp-x86_64-unknown-linux-musl.tgz | tar -xzvf -
3535

3636
# Apple Silicon
37-
curl -L https://github.com/Desdaemon/odoo-lsp/releases/download/nightly/odoo-lsp-aarch64-apple-darwin.tgz | tar -xzvf -
37+
curl -L https://github.com/Desdaemon/odoo-lsp/releases/download/latest/odoo-lsp-aarch64-apple-darwin.tgz | tar -xzvf -
3838

3939
# With cargo-binstall
4040
cargo binstall odoo-lsp

client/package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
},
99
"devDependencies": {
1010
"@types/node": "^17.0.45",
11-
"@types/vscode": "^1.66.0",
12-
"vscode-test": "^1.6.1"
11+
"@types/vscode": "^1.75.0",
12+
"vscode-test": "^1.6.1",
13+
"execa": "^9.5.2",
14+
"vscode-languageclient": "^8.1.0"
1315
}
1416
}

0 commit comments

Comments
 (0)