mirror of
https://github.com/fluxcd/flux2.git
synced 2026-02-21 23:21:48 +00:00
fix: install command flags logic bug
Signed-off-by: Frank Gu <frank.gu968@outlook.com>
This commit is contained in:
parent
e724d90202
commit
6b0ffe0b13
1 changed files with 3 additions and 3 deletions
|
|
@ -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")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue