We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dd7da0e + 4c949db commit dce8940Copy full SHA for dce8940
reframe/core/pipeline.py
@@ -1293,9 +1293,11 @@ def run(self):
1293
self.container_platform.validate()
1294
1295
# We replace executable and executable_opts in case of containers
1296
- self.executable = self.container_platform.launch_command()
+ self.executable = self.container_platform.launch_command(
1297
+ self.stagedir)
1298
self.executable_opts = []
- prepare_container = self.container_platform.emit_prepare_commands()
1299
+ prepare_container = self.container_platform.emit_prepare_commands(
1300
1301
if prepare_container:
1302
self.prerun_cmds += prepare_container
1303
0 commit comments