Skip to content

Commit 92f7204

Browse files
committed
code: Release 0.13.3
1 parent a29629b commit 92f7204

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

editors/code/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ If you want to see detailed diagnostics of your program while it's running,
5656
you can use:
5757

5858
```text
59-
cargo run --bin rune -- run scripts/hello_world.rn --dump-unit --trace --dump-vm
59+
cargo run --bin rune -- run scripts/hello_world.rn --dump --trace
6060
```
6161

6262
See `--help` for more information.

editors/code/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"preview": true,
66
"private": true,
77
"icon": "assets/logo.png",
8-
"version": "0.13.2",
8+
"version": "0.13.3",
99
"releaseTag": null,
1010
"publisher": "udoprog",
1111
"repository": {

editors/code/src/ctx.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -464,17 +464,22 @@ function detectPlatform(): [String, String] | undefined {
464464
switch (process.platform) {
465465
case "win32":
466466
platform = "windows";
467+
break;
467468
case "linux":
468469
platform = "linux";
470+
break;
469471
case "darwin":
470472
platform = "macos";
473+
break;
471474
}
472475

473476
switch (process.arch) {
474477
case "x64":
475478
arch = "x86_64";
479+
break;
476480
case "arm64":
477481
arch = "aarch64";
482+
break;
478483
}
479484

480485
if (!platform || !arch) {

0 commit comments

Comments
 (0)