File tree 1 file changed +4
-4
lines changed
java/runner/java/com/senzing/runner
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
472
472
}
473
473
}
474
474
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 ( " \\ " , " \\ \\ " ) ;
478
478
String databasePath = databaseFile .getCanonicalPath ().replace ('\\' ,'/' );
479
479
String baseConfig = readTextFileAsString (configFile , UTF_8 );
480
480
String settings = """
@@ -500,7 +500,7 @@ private static String setupTempRepository(InstallLocations senzingInstall) throw
500
500
} catch (SzException e ) {
501
501
System .err .println (settings );
502
502
throw e ;
503
-
503
+
504
504
} finally {
505
505
env .destroy ();
506
506
}
You can’t perform that action at this time.
0 commit comments