mirror of
https://github.com/rife2/bld
synced 2025-12-23 17:58:36 +01:00
vscode related fixes
This commit is contained in:
parent
7face792f2
commit
5519ff3f1c
|
|
@ -138,8 +138,8 @@ public class Wrapper {
|
||||||
if (file.exists()) {
|
if (file.exists()) {
|
||||||
try {
|
try {
|
||||||
var content = FileUtils.readString(file);
|
var content = FileUtils.readString(file);
|
||||||
content = BLD_JAR_PATTERN.matcher(content).replaceAll("bld-" + version + ".jar");
|
content = BLD_JAR_PATTERN.matcher(content).replaceAll("/.bld/dist/bld-" + version + ".jar");
|
||||||
content = RIFE2_JAR_PATTERN.matcher(content).replaceAll("bld-" + version + ".jar");
|
content = RIFE2_JAR_PATTERN.matcher(content).replaceAll("/.bld/dist/bld-" + version + ".jar");
|
||||||
FileUtils.writeString(content, file);
|
FileUtils.writeString(content, file);
|
||||||
} catch (FileUtilsErrorException e) {
|
} catch (FileUtilsErrorException e) {
|
||||||
throw new IOException(e);
|
throw new IOException(e);
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@
|
||||||
],
|
],
|
||||||
"java.configuration.updateBuildConfiguration": "automatic",
|
"java.configuration.updateBuildConfiguration": "automatic",
|
||||||
"java.project.referencedLibraries": [
|
"java.project.referencedLibraries": [
|
||||||
|
"${HOME}/.bld/dist/bld-{{v version/}}.jar",
|
||||||
"lib/compile/*.jar",
|
"lib/compile/*.jar",
|
||||||
"lib/runtime/*.jar",
|
"lib/runtime/*.jar",
|
||||||
"lib/standalone/*.jar",
|
"lib/standalone/*.jar",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue