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 2e5ad3d commit 59a3a7eCopy full SHA for 59a3a7e
commands/curation/curationaudit.go
@@ -133,11 +133,7 @@ func (ca *CurationAuditCommand) checkSupportByVersionOrEnv(tech techutils.Techno
133
}
134
135
func (ca *CurationAuditCommand) checkDockerSupport() (bool, error) {
136
- dockerImageName := ca.DockerImageName()
137
- if dockerImageName == "" {
138
- return false, nil
139
- }
140
- return true, nil
+ return ca.DockerImageName() != "", nil
141
142
143
func (ca *CurationAuditCommand) getRtVersion(tech techutils.Technology) (string, error) {
0 commit comments