Skip to content

Commit c17dd91

Browse files
aldbrweb-flow
authored andcommitted
sweep: #6989 fix AREXCE: executables definition not removed correctly within the code
1 parent 7abf70d commit c17dd91

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/DIRAC/Resources/Computing/AREXComputingElement.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -391,9 +391,8 @@ def submitJob(self, executableFile, proxy, numberOfJobs=1, inputs=None, outputs=
391391
outputs = []
392392

393393
# If there is a preamble, then we bundle it in an executable file
394-
executables = []
395394
if self.preamble:
396-
executables = [executableFile]
395+
inputs.append(executableFile)
397396
executableFile = self._bundlePreamble(executableFile)
398397

399398
# Submit multiple jobs sequentially.

0 commit comments

Comments
 (0)