Skip to content

Commit

Permalink
Merge pull request #27 from Enerccio/stable
Browse files Browse the repository at this point in the history
Fixing windows start bug
  • Loading branch information
Enerccio authored Jan 20, 2023
2 parents 0c6d0fe + 29ad87f commit 43c5e8e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@

## 0.2.1 - 230120

### Fixes

- Attempting to fix windows path error

## 0.2.0 - 230120

### Added
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = "com.en_circle.slt"
version = "0.2.0"
version = "0.2.1"

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 43c5e8e

Please sign in to comment.