Skip to content

Commit f6856db

Browse files
authored
Merge pull request #6999 from DIRACGridBot/cherry-pick-2-eecd01dd0-integration
[sweep:integration] fix AREXCE: `executables` definition not removed correctly within the code
2 parents 7abf70d + c17dd91 commit f6856db

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)