Skip to content
Snippets Groups Projects
Commit 1c7fc954 authored by dgelessus's avatar dgelessus
Browse files

Move jar out of out so that we don't have to worry about creating dirs

parent 3d47fabd
Branches
Tags
No related merge requests found
Pipeline #116088 passed
out
node_modules
.vscode-test/
*.jar
*.vsix
......@@ -141,7 +141,7 @@
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"download_jar": "curl -fL -o \"out/b-language-server-all.jar\" \"https://gitlab.cs.uni-duesseldorf.de/api/v4/projects/2834/jobs/artifacts/master/raw/build/libs/b-language-server-all.jar?job=test\"",
"download_jar": "curl -fL -o \"b-language-server-all.jar\" \"https://gitlab.cs.uni-duesseldorf.de/api/v4/projects/2834/jobs/artifacts/master/raw/build/libs/b-language-server-all.jar?job=test\"",
"package": "vsce package"
},
"devDependencies": {
......
......@@ -16,8 +16,6 @@ import {
} from 'vscode-languageclient/node';
import * as net from 'net';
import * as path from 'path'
import { spawn } from 'child_process';
......@@ -26,7 +24,7 @@ let debugChannle: OutputChannel = null;
export function activate(context: ExtensionContext) {
const serverHome = context.asAbsolutePath(path.join('out', 'b-language-server-all.jar'))
const serverHome = context.asAbsolutePath("b-language-server-all.jar")
const javaHome: string = workspace.getConfiguration("common").get("javaHome")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment