Skip to content
Snippets Groups Projects
Commit bc126722 authored by Daniel's avatar Daniel
Browse files

Workaround: server-side scripting copies .pycaosdb.ini from `/`.

parent 146066fc
No related branches found
Tags
No related merge requests found
......@@ -201,9 +201,9 @@ public class ServerSideScriptingCaller {
}
try {
Files.copy(
Paths.get(System.getProperty("user.home"), ".pycaosdb.ini"), this.tmpHome.toPath());
Paths.get("/", ".pycaosdb.ini"), this.tmpHome.toPath());
} catch (IOException e) {
System.out.println("No pycaosdb.info found");
System.err.println("No pycaosdb.ini found at " + "/");
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment