Skip to content

Commit

Permalink
Issue #735 Skip showing '-b $BundleName' after setup
Browse files Browse the repository at this point in the history
Show this option only when bundle is not embedded
  • Loading branch information
anjannath authored and praveenkumar committed Oct 19, 2019
1 parent cac2dde commit beb383a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/crc/cmd/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func runSetup(arguments []string) {
}
preflight.SetupHost(vmDriver)
var bundle string
if constants.BundleEmbedded() {
if !constants.BundleEmbedded() {
bundle = " -b $bundlename"
}
output.Outf("Setup is complete, you can now run 'crc start%s' to start the OpenShift cluster\n", bundle)
Expand Down

0 comments on commit beb383a

Please sign in to comment.