Skip to content

Commit edb1eb2

Browse files
committed
Attempt to fix windows issues with init JSON
1 parent b3f17f5 commit edb1eb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/runner/java/com/senzing/runner/SnippetRunner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ private static String setupTempRepository(InstallLocations senzingInstall) throw
475475
String supportPath = senzingInstall.getSupportDirectory().getCanonicalPath().replace("\\", "\\\\");
476476
String configPath = configDir.getCanonicalPath().replace("\\", "\\\\");
477477
String resourcePath = resourcesDir.toString().replace("\\", "\\\\");
478-
String databasePath = databaseFile.getCanonicalPath().replace('\\','/');
478+
String databasePath = databaseFile.getCanonicalPath().replace("\\", "\\\\");
479479
String baseConfig = readTextFileAsString(configFile, UTF_8);
480480
String settings = """
481481
{

0 commit comments

Comments
 (0)