Skip to content
This repository was archived by the owner on Jan 9, 2023. It is now read-only.

Commit 597efd2

Browse files
authored
Merge pull request #388 from dippynark/fix-multierror-return
Return multierror with ErrorOrNil
2 parents 50e3a5d + 1363ec6 commit 597efd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/tarmak/environment/environment.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ func (e *Environment) Verify() error {
308308
result = multierror.Append(result, err)
309309
}
310310

311-
return result
311+
return result.ErrorOrNil()
312312
}
313313

314314
func (e *Environment) WingTunnel() interfaces.Tunnel {

0 commit comments

Comments
 (0)