Skip to content

Commit fa9482a

Browse files
committed
fix: Make roughly.path null by default
1 parent a9b0f0c commit fa9482a

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

client/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,12 @@
7373
"properties": {
7474
"roughly.path": {
7575
"scope": "resource",
76-
"type": "string",
76+
"type": [
77+
"string",
78+
"null"
79+
],
7780
"format": "path",
78-
"default": "roughly",
81+
"default": null,
7982
"markdownDescription": "Location of the `roughly` executable, e.g., `[\"/path/to/roughly\"]`."
8083
},
8184
"roughly.args": {

justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ vsce *args:
2424
# BUILD
2525
#
2626

27-
install-extension $version:
28-
code --install-extension client/roughly-*.vsix --force
27+
install-extension $path:
28+
code --install-extension {{path}}
2929

3030
build-linux:
3131
cargo build --release --target x86_64-unknown-linux-gnu

0 commit comments

Comments
 (0)