Skip to content

Commit

Permalink
Updated usage
Browse files Browse the repository at this point in the history
  • Loading branch information
wbreza committed Oct 19, 2023
1 parent 50ee24f commit aa27b4c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -1618,8 +1618,7 @@ func (p *BicepProvider) loadParameters(ctx context.Context) (map[string]azure.Ar

// Return a value when it exists
// Empty string values are valid and should be returned
value, exists := p.env.LookupEnv(name)
if exists {
if value, exists := p.env.LookupEnv(name); exists {
return value
}

Expand Down

0 comments on commit aa27b4c

Please sign in to comment.