Skip to content

Commit 2c79d73

Browse files
committed
fixed script problems (#7)
Signed-off-by: Lars Heinemann <[email protected]>
1 parent 2b8f08e commit 2c79d73

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@
8080
},
8181
"dependencies": {
8282
"decompress": "^4.0.0",
83-
"download": "^6.2.5",
8483
"expand-home-dir": "^0.0.3",
8584
"find-java-home": "0.1.4",
8685
"glob": "^7.1.1",

scripts/preinstall.js

+6-8
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
'use strict';
2-
const download = require("mvn-artifact-download");
3-
download('com.github.camel-tooling:camel-lsp-server:1.0.0-SNAPSHOT', './jars/language-server.jar', 'https://oss.sonatype.org/content/repositories/snapshots/');
42

5-
/**
3+
var lsp_server_version = "1.0.0-SNAPSHOT";
4+
5+
const download = require("mvn-artifact-download").default;
66
const fs = require('fs');
7-
const download = require('download')
8-
var url = "https://github.com/camel-tooling/camel-language-server/releases/download/untagged-27364bc5f4ff78ca37a9/camel-lsp-server-1.0.0-SNAPSHOT.jar"
7+
const path = require('path');
98

10-
download(url).then(data => {
11-
fs.writeFileSync('./jars/language-server.jar', data);
9+
download('com.github.camel-tooling:camel-lsp-server:' + lsp_server_version, './jars/', 'https://oss.sonatype.org/content/repositories/snapshots/').then((filename)=>{
10+
fs.renameSync(filename, path.join('.', 'jars', 'language-server.jar'));
1211
});
13-
*/

0 commit comments

Comments
 (0)