From ef073537e2a9185d3acb4a6491072781941d0bd0 Mon Sep 17 00:00:00 2001 From: Peter Vanusanik Date: Fri, 20 Jan 2023 12:06:50 +0100 Subject: [PATCH 1/3] #24 --- .../en_circle/slt/plugin/environment/SltSBCLEnvironment.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/en_circle/slt/plugin/environment/SltSBCLEnvironment.java b/src/main/java/com/en_circle/slt/plugin/environment/SltSBCLEnvironment.java index 9971f0f..81c7e04 100644 --- a/src/main/java/com/en_circle/slt/plugin/environment/SltSBCLEnvironment.java +++ b/src/main/java/com/en_circle/slt/plugin/environment/SltSBCLEnvironment.java @@ -33,7 +33,7 @@ protected Object prepareProcessEnvironment(SltLispEnvironmentProcessConfiguratio e.serverStartSetup = new File(tempDir, "startServer.cl"); e.serverStartSetup.deleteOnExit(); String sltCorePath = e.sltCore.getAbsolutePath(); - if (sltCorePath.contains("//")) { + if (sltCorePath.contains("\\")) { sltCorePath = StringUtils.replace(sltCorePath, "\\", "\\\\"); } String startScriptTemplate = new SBCLInitScriptTemplate(c, sltCorePath).render(); From 0bf142f775dda15057118e5e202966f73c95ac70 Mon Sep 17 00:00:00 2001 From: Peter Vanusanik Date: Fri, 20 Jan 2023 12:08:38 +0100 Subject: [PATCH 2/3] version update --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bd1b9e..3c24e15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,10 @@ +## 0.2.1 - 230120 + +### Fixes + +- Attempting to fix windows path error + ## 0.2.0 - 230120 ### Added From 29ad87ff48b8946398ab7abeebcfcb98ae2c828d Mon Sep 17 00:00:00 2001 From: Peter Vanusanik Date: Fri, 20 Jan 2023 12:08:59 +0100 Subject: [PATCH 3/3] version update --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 36d6ee5..88ee1ba 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,7 +4,7 @@ plugins { } group = "com.en_circle.slt" -version = "0.2.0" +version = "0.2.1" repositories { mavenCentral()