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

Task #8640 Second iteration of intended fix.

parent 6af6c46f
No related branches found
No related tags found
No related merge requests found
......@@ -294,11 +294,16 @@ class executable_args(BaseRecipe, RemoteCommandRecipeMixIn):
filedict = {}
if self.inputs['inputkeys'] and not self.inputs['skip_infile']:
for key, filemap, mapname in zip(self.inputs['inputkeys'], inputmapfiles, self.inputs['mapfiles_in']):
for key, filemap, mapname in zip(self.inputs['inputkeys'], inputmapfiles, inlist):
if not mapname in self.inputs['mapfiles_as_string']:
filedict[key] = []
for inp in filemap:
filedict[key].append(inp.file)
else:
if key != mapname:
filedict[key] = []
for inp in filemap:
filedict[key].append(mapname)
if self.inputs['outputkey']:
filedict[self.inputs['outputkey']] = []
......
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