Skip to content

Commit

Permalink
Merge pull request #33698 from hbostan/extract-fix-env
Browse files Browse the repository at this point in the history
Expand env variables in extract flag
  • Loading branch information
k8s-ci-robot authored Oct 21, 2024
2 parents 19920dd + 4f3609d commit 1164926
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions kubetest/extract_k8s.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ func (l *extractStrategies) String() string {

// Converts --extract=release/stable, etc into an extractStrategy{}
func (l *extractStrategies) Set(value string) error {
value = os.ExpandEnv(value)
var strategies = map[string]extractMode{
`^(bazel)$`: localBazel,
`^(local)`: local,
Expand Down

0 comments on commit 1164926

Please sign in to comment.