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 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() 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();