Skip to content

Commit 90fb2df

Browse files
authored
Merge pull request #31 from tpiperatgod/main
Adjust the condition of Shipwright so that it is always enabled.
2 parents 30670ee + a326943 commit 90fb2df

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pkg/cmd/subcommand/install.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,13 +355,16 @@ func (i *Install) RunInstall(cl *k8s.Clientset, cmd *cobra.Command) error {
355355
}
356356

357357
func (i *Install) mergeConditions() {
358+
359+
// We have to install the Shipwright because the OpenFunction must depend on it.
360+
i.WithShipWright = true
361+
358362
// Update the corresponding conditions when WithAll is true
359363
if i.WithAll {
360364
i.WithDapr = true
361365
i.WithKeda = true
362366
i.WithIngress = true
363367
i.WithKnative = true
364-
i.WithShipWright = true
365368
i.WithCertManager = true
366369
}
367370

0 commit comments

Comments
 (0)