Skip to content

Commit c96bfc9

Browse files
committed
fix(apps): fix app overrides for deploy
1 parent 5aa7205 commit c96bfc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/environment/environment.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ func (e *Environment) GetValueSetCollection() values.ValueSetCollection {
3434
// defined in this environment for a specific app. If none is defined, an instance that does nothing will be returned.
3535
func (e *Environment) GetAppValueSetCollectionProvider(appName string) values.ValueSetCollectionProvider {
3636

37-
if appValueOverride, ok := e.AppValueOverrides[appName]; ok {
37+
if appValueOverride, ok := e.Apps[appName]; ok {
3838
return appValueSetCollectionProvider{
3939
valueSetCollection: appValueOverride,
4040
}

0 commit comments

Comments
 (0)