From 947942f52c9bf0f7e7c604f5043c4ea6ea42af93 Mon Sep 17 00:00:00 2001 From: Mathieu Baudier Date: Wed, 28 Mar 2012 11:43:50 +0000 Subject: [PATCH] Make default execution ressources temp dir dependent of the JVM OS user, in order to avoid authorization conflicts git-svn-id: https://svn.argeo.org/slc/trunk@5256 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc --- .../org/argeo/slc/core/execution/FileExecutionResources.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/FileExecutionResources.java b/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/FileExecutionResources.java index 155a75825..37de20ef8 100644 --- a/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/FileExecutionResources.java +++ b/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/FileExecutionResources.java @@ -39,10 +39,10 @@ public class FileExecutionResources implements ExecutionResources { public final static String DEFAULT_EXECUTION_RESOURCES_TMP_PATH = System .getProperty("java.io.tmpdir") + File.separator - + "slc-" + System.getProperty("user.name") + File.separator - + DEFAULT_EXECUTION_RESOURCES_DIRNAME; + + "slc" + + File.separator + DEFAULT_EXECUTION_RESOURCES_DIRNAME; private File baseDir; private ExecutionContext executionContext; -- 2.39.5