diff --git a/v2/internal/runner/update.go b/v2/internal/runner/update.go index 26c8c1e5f..0268c8e72 100644 --- a/v2/internal/runner/update.go +++ b/v2/internal/runner/update.go @@ -283,7 +283,9 @@ func (r *Runner) downloadReleaseAndUnzip(ctx context.Context, version, downloadU return nil, fmt.Errorf("failed to write templates: %s", err) } - r.printUpdateChangelog(results, version) + if !r.options.Silent { + r.printUpdateChangelog(results, version) + } checksumFile := path.Join(r.templatesConfig.TemplatesDirectory, ".checksum") err = writeTemplatesChecksum(checksumFile, results.checksums) if err != nil {