Skip to content

Commit a46c0df

Browse files
author
Arvind Iyengar
authored
Merge pull request #78 from aiyengar2/flip_order_of_arguments_to_fix_validation
Fix broken validation of charts that exists in both upstream and local
2 parents bc4c3da + 3d26a9f commit a46c0df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/validate/validate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ func CompareGeneratedAssets(repoFs billy.Filesystem, u options.UpstreamOptions,
135135
return copyAndUnzip(repoFs, upstreamPath, localPath)
136136
}
137137

138-
localAndUpstream := func(fs billy.Filesystem, upstreamPath, localPath string, isDir bool) error {
138+
localAndUpstream := func(fs billy.Filesystem, localPath, upstreamPath string, isDir bool) error {
139139
if isDir {
140140
// We only care about modified files
141141
return nil

0 commit comments

Comments
 (0)