Skip to content

Commit

Permalink
Fix -with-apptainer cli option (#3621)
Browse files Browse the repository at this point in the history
Signed-off-by: Ben Sherman <bentshermann@gmail.com>
  • Loading branch information
bentsherman committed Feb 8, 2023
1 parent 12782ee commit 8c9588f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -743,6 +743,10 @@ class ConfigBuilder {
configContainer(config, 'singularity', cmdRun.withSingularity)
}

if( cmdRun.withApptainer ) {
configContainer(config, 'apptainer', cmdRun.withApptainer)
}

if( cmdRun.withCharliecloud ) {
configContainer(config, 'charliecloud', cmdRun.withCharliecloud)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -494,6 +494,7 @@ class K8sDriverLauncher {
cmd.&executorOptions,
cmd.&stdin,
cmd.&withSingularity,
cmd.&withApptainer,
cmd.&withDocker,
cmd.&withoutDocker,
cmd.&withMpi,
Expand Down

0 comments on commit 8c9588f

Please sign in to comment.