Skip to content

Commit 820a152

Browse files
committed
fmt fix
1 parent dcdf09e commit 820a152

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

builder/azure/arm/config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ type Config struct {
616616
// `custom_resource_build_prefix` + resourcetype + 5 character random alphanumeric string
617617
//
618618
// You can also set this via the environment variable `PACKER_AZURE_CUSTOM_RESOURCE_BUILD_PREFIX`.
619-
// If both the config field and the environment variable are present, the config field takes precedence.
619+
// If both the config field and the environment variable are present, the config field takes precedence.
620620
CustomResourcePrefix string `mapstructure:"custom_resource_build_prefix" required:"false"`
621621

622622
// Specify a license type for the build VM to enable Azure Hybrid Benefit. If not set, Pay-As-You-Go license
@@ -1434,7 +1434,7 @@ func assertRequiredParametersSet(c *Config, errs *packersdk.MultiError) {
14341434
}
14351435
}
14361436

1437-
if c.CustomResourcePrefix == "" {
1437+
if c.CustomResourcePrefix == "" {
14381438
val, ok := os.LookupEnv("PACKER_AZURE_CUSTOM_RESOURCE_BUILD_PREFIX")
14391439
if ok {
14401440
c.CustomResourcePrefix = val

0 commit comments

Comments
 (0)