Skip to content
Snippets Groups Projects
Commit c7f8b30b authored by Yohan Jarosz's avatar Yohan Jarosz
Browse files

typo

parent 010fa108
No related branches found
No related tags found
No related merge requests found
......@@ -57,8 +57,8 @@ MEMCORE = os.environ.get("MEMCORE", config['memory_per_core_gb'])
# temporary directory will be stored inside the OUTPUTDIR directory
# unless a absolute path is set
TMPDIR = os.environ.get("TMPDIR", config['tmp_dir'])
if not os.path.isabs(TMP_DIR):
TMPDIR = os.path.join(OUTPUTDIR, TMP_DIR)
if not os.path.isabs(TMPDIR):
TMPDIR = os.path.join(OUTPUTDIR, TMPDIR)
def prepare_environment(stepname):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment