Skip to content

Commit

Permalink
Update cmd/argocd/commands/app.go
Browse files Browse the repository at this point in the history
Co-authored-by: Soumya Ghosh Dastidar <[email protected]>
Signed-off-by: Nitish Kumar <[email protected]>
  • Loading branch information
nitishfy and gdsoumya committed Sep 11, 2024
1 parent b7b774d commit 340fef8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cmd/argocd/commands/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,9 @@ func printParams(app *argoappv1.Application, sourcePosition int) {
source = &src
}

printHelmParams(source.Helm)
if source.Helm != nil {
printHelmParams(source.Helm)
}
}

func printHelmParams(helm *argoappv1.ApplicationSourceHelm) {
Expand Down

0 comments on commit 340fef8

Please sign in to comment.