From 76715a77a9198192a6309eb7bac1813fde78e02f Mon Sep 17 00:00:00 2001 From: Christian Winther Date: Mon, 10 Jun 2024 01:07:15 +0200 Subject: [PATCH] fix: template: allow interpolation of inactive keys --- cmd/template/template.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/template/template.go b/cmd/template/template.go index 186f844..d607a1d 100644 --- a/cmd/template/template.go +++ b/cmd/template/template.go @@ -22,6 +22,7 @@ func New() *cobra.Command { } shared.BoolWithInverse(cmd, "interpolation", true, "Enable interpolation", "Disable interpolation") + cmd.Flags().Bool("with-disabled", false, "Include disabled assignments") return cmd }