Skip to content

Commit

Permalink
fix static check errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Yusuf Kanchwala committed Aug 13, 2020
1 parent c66dbef commit c33b805
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions pkg/runtime/validate.go
Expand Up @@ -27,11 +27,10 @@ import (
)

var (
errEmptyIacPath = fmt.Errorf("empty iac path, either use '-f' or '-d' option")
errIncorrectIacPath = fmt.Errorf("cannot accept both '-f' and '-d' options together")
errDirNotExists = fmt.Errorf("directory does not exist")
errFileNotExists = fmt.Errorf("file does not exist")
errIacNotSupported = fmt.Errorf("iac type or version not supported")
errEmptyIacPath = fmt.Errorf("empty iac path, either use '-f' or '-d' option")
errDirNotExists = fmt.Errorf("directory does not exist")
errFileNotExists = fmt.Errorf("file does not exist")
errIacNotSupported = fmt.Errorf("iac type or version not supported")
)

// ValidateInputs validates the inputs to the executor object
Expand Down

0 comments on commit c33b805

Please sign in to comment.