We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 957d44d commit 9c0ebe7Copy full SHA for 9c0ebe7
1 file changed
cmd/extension/extension_validate.go
@@ -120,6 +120,12 @@ func init() {
120
return fmt.Errorf("invalid mode: %s. Must be either 'highest' or 'lowest'", mode)
121
}
122
123
- return verifier.SetupTools(cmd.Root().Version)
+ // Dont setup tools if we dont run full validation
124
+ full, _ := cmd.Flags().GetBool("full")
125
+ if !full {
126
+ return nil
127
+ }
128
+
129
+ return verifier.SetupTools("latest")
130
131
0 commit comments