Skip to content

Commit

Permalink
update log
Browse files Browse the repository at this point in the history
  • Loading branch information
nvanthao committed Oct 18, 2024
1 parent 95bc109 commit 0089500
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cmd/kots/cli/template.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,11 @@ func TemplateCmd() *cobra.Command {

// render all mode, similar to helm template
// we will utilize pull command to fetch and render manifests from upstream
log.Info("Pulling app from upstream and rendering templates...")
if localPath != "" {
log.Info("Rendering templates from local path...")
} else {
log.Info("Pulling app from upstream and rendering templates...")
}
err := pullAndRender(license.Spec.AppSlug, licenseFile, configFile, localPath)

if err != nil {
Expand Down

0 comments on commit 0089500

Please sign in to comment.