Skip to content

Commit

Permalink
Make sure to run parallel commands part of a composite command in par…
Browse files Browse the repository at this point in the history
…allel
  • Loading branch information
rm3l committed Sep 6, 2023
1 parent adc9699 commit 77462c7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/libdevfile/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@ func newCommand(devfileObj parser.DevfileObj, devfileCmd v1alpha2.Command) (comm
case v1alpha2.CompositeCommandType:
if util.SafeGetBool(devfileCmd.Composite.Parallel) {
cmd = newParallelCompositeCommand(devfileObj, devfileCmd)
} else {
cmd = newCompositeCommand(devfileObj, devfileCmd)
}
cmd = newCompositeCommand(devfileObj, devfileCmd)

case v1alpha2.ExecCommandType:
cmd = newExecCommand(devfileObj, devfileCmd)
Expand Down

0 comments on commit 77462c7

Please sign in to comment.