Skip to content

Commit

Permalink
Allocate tty for main jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
aaannz committed Aug 11, 2023
1 parent b3574cd commit 83fe830
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iguana-workflow/src/engines/podman.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ impl ContainerOps for Podman {
if is_service {
cmd = cmd.arg("--detach");
} else {
cmd = cmd.arg("--interactive");
cmd = cmd.args(["--interactive", "--tty"]);
}

if !opts.debug {
Expand Down

0 comments on commit 83fe830

Please sign in to comment.