Skip to content

Commit 0178c59

Browse files
committed
linking
1 parent 9b629f7 commit 0178c59

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
- os: ubuntu-latest
1717
suffix: linux
1818
- os: macOS-latest
19-
suffix: macos
19+
suffix: darwin
2020
- os: windows-latest
21-
suffix: windows
21+
suffix: win32
2222
fail-fast: false
2323
name: ${{ matrix.os }}
2424
steps:
@@ -85,7 +85,6 @@ jobs:
8585
tag: ${{ github.ref_name }}
8686
overwrite: true
8787
file_glob: true
88-
name: Processing for VS Code
8988
body: |
9089
This is the pre-release of a Processing for VS Code extension.
9190
Download the supported preview version of Processing from https://github.com/Stefterv/processing4/releases/tag/processing-1374-4.4.74

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
out
22
node_modules
33
client/server
4-
.vscode-test
4+
.vscode-test
5+
6+
7+
install-locator-*

.vscodeignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,6 @@ client/node_modules/**
1212
!client/node_modules/vscode-languageserver-protocol/**
1313
!client/node_modules/vscode-languageserver-types/**
1414
!client/node_modules/{minimatch,brace-expansion,concat-map,balanced-match}/**
15-
!client/node_modules/{semver,lru-cache,yallist}/**
15+
!client/node_modules/{semver,lru-cache,yallist}/**
16+
17+
install-locator

client/src/extension.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ export async function activate(context: ExtensionContext) {
2121
// TODO: Add a launch button when a relevant file is open
2222
const config = workspace.getConfiguration('processing');
2323

24-
25-
const binaryPath = context.asAbsolutePath(join('install-locator', "build", 'image', 'bin', 'install-locator'));
24+
const binaryPath = context.asAbsolutePath(join(`install-locator-${process.platform}`, 'bin', 'install-locator'));
2625

2726
const versions = await new Promise<ProcessingVersion[]>((resolve, reject) => {
2827
exec(binaryPath, (error, stdout, stderr) => {

0 commit comments

Comments
 (0)