We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 010a2e4 commit 7c437c4Copy full SHA for 7c437c4
CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
8
## [UNRELEASED]
9
10
+### Fixed
11
+
12
+- Crash when running `gatecheck bundle add` with no tags
13
14
## [0.7.5] - 2024-06-18
15
16
### Fixed
cmd/cli-config.go
@@ -45,7 +45,7 @@ var RuntimeConfig = metaConfig{
45
BundleTag: configkit.MetaField{
46
FieldName: "BundleTag",
47
EnvKey: "GATECHECK_BUNDLE_TAG",
48
- DefaultValue: "",
+ DefaultValue: []string{},
49
FlagValueP: new([]string),
50
EnvToValueFunc: func(s string) any {
51
return strings.Split(s, ",")
0 commit comments