mirror of
https://github.com/fluxcd/flux2.git
synced 2025-10-31 00:06:55 +08:00
fix: install command flags logic bug
Signed-off-by: Frank Gu <frank.gu968@outlook.com>
This commit is contained in:
@ -176,15 +176,15 @@ func installCmdRun(cmd *cobra.Command, args []string) error {
|
|||||||
return fmt.Errorf("install failed: %w", err)
|
return fmt.Errorf("install failed: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if rootArgs.verbose {
|
if installArgs.export {
|
||||||
fmt.Print(manifest.Content)
|
|
||||||
} else if installArgs.export {
|
|
||||||
fmt.Println("---")
|
fmt.Println("---")
|
||||||
fmt.Println("# Flux version:", installArgs.version)
|
fmt.Println("# Flux version:", installArgs.version)
|
||||||
fmt.Println("# Components:", strings.Join(components, ","))
|
fmt.Println("# Components:", strings.Join(components, ","))
|
||||||
fmt.Print(manifest.Content)
|
fmt.Print(manifest.Content)
|
||||||
fmt.Println("---")
|
fmt.Println("---")
|
||||||
return nil
|
return nil
|
||||||
|
} else if rootArgs.verbose {
|
||||||
|
fmt.Print(manifest.Content)
|
||||||
}
|
}
|
||||||
|
|
||||||
logger.Successf("manifests build completed")
|
logger.Successf("manifests build completed")
|
||||||
|
|||||||
Reference in New Issue
Block a user