remove unnecessary parenthesis

pull/6982/head
Adrien Delorme 8 years ago committed by GitHub
parent 1ab0173e69
commit 08e8b1850e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -514,7 +514,7 @@ func assertRequiredParametersSet(c *Config, errs *packer.MultiError) {
if isUseDeviceLogin(c) { if isUseDeviceLogin(c) {
c.useDeviceLogin = true c.useDeviceLogin = true
} else { } else {
if (c.ClientID == "" && c.ClientSecret != "") || (c.ClientID != "" && c.ClientSecret == "") { if c.ClientID == "" && c.ClientSecret != "" || c.ClientID != "" && c.ClientSecret == "" {
errs = packer.MultiErrorAppend(errs, fmt.Errorf("A client_id and client_secret must be specified together or not specified at all")) errs = packer.MultiErrorAppend(errs, fmt.Errorf("A client_id and client_secret must be specified together or not specified at all"))
} }

Loading…
Cancel
Save