From 14a31564650de4885aecc1a91280592b8ba8f2f7 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 29 Sep 2024 18:22:21 +0200 Subject: [PATCH] fix(mage): actually pass the cli parameter to the function --- magefile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/magefile.go b/magefile.go index e1401b2c5..4f98cc462 100644 --- a/magefile.go +++ b/magefile.go @@ -1125,5 +1125,5 @@ func generateConfigYAMLFromJSON(yamlPath string, commented bool) { // Create a yaml config file from the config-raw.json definition func (Generate) ConfigYAML(commented bool) { - generateConfigYAMLFromJSON(DefaultConfigYAMLSamplePath, false) + generateConfigYAMLFromJSON(DefaultConfigYAMLSamplePath, commented) }