Skip to content
Snippets Groups Projects
Commit bbcfb60e authored by Stefan Froehlich's avatar Stefan Froehlich
Browse files

Task #8525 Added the stepname in front of the output mapfiles from steps.

parent 8a6fd2ef
No related branches found
No related tags found
No related merge requests found
......@@ -366,8 +366,8 @@ class executable_args(BaseRecipe, RemoteCommandRecipeMixIn):
#mapfile_dir = os.path.join(self.config.get("layout", "job_directory"), "mapfiles")
for k, v in jobresultdict.items():
dmap = DataMap(v)
dmap.save(os.path.join(mapfile_dir, k + '.mapfile'))
resultmap[k + '.mapfile'] = os.path.join(mapfile_dir, k + '.mapfile')
dmap.save(os.path.join(mapfile_dir, self.inputs['stepname'] + '.' + k + '.mapfile'))
resultmap[k + '.mapfile'] = os.path.join(mapfile_dir, self.inputs['stepname'] + '.' + k + '.mapfile')
self.outputs.update(resultmap)
# *********************************************************************
# Check job results, and create output data map file
......
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