File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
java/runner/java/com/senzing/runner Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -472,9 +472,9 @@ private static String setupTempRepository(InstallLocations senzingInstall) throw
472472 }
473473 }
474474
475- String supportPath = senzingInstall .getSupportDirectory ().getCanonicalPath ();
476- String configPath = configDir .getCanonicalPath ();
477- String resourcePath = resourcesDir .toString ();
475+ String supportPath = senzingInstall .getSupportDirectory ().getCanonicalPath (). replace ( " \\ " , " \\ \\ " ) ;
476+ String configPath = configDir .getCanonicalPath (). replace ( " \\ " , " \\ \\ " ) ;
477+ String resourcePath = resourcesDir .toString (). replace ( " \\ " , " \\ \\ " ) ;
478478 String databasePath = databaseFile .getCanonicalPath ().replace ('\\' ,'/' );
479479 String baseConfig = readTextFileAsString (configFile , UTF_8 );
480480 String settings = """
@@ -500,7 +500,7 @@ private static String setupTempRepository(InstallLocations senzingInstall) throw
500500 } catch (SzException e ) {
501501 System .err .println (settings );
502502 throw e ;
503-
503+
504504 } finally {
505505 env .destroy ();
506506 }
You can’t perform that action at this time.
0 commit comments