Fix discarded error in drone-acr cert setup

Made-with: Cursor
This commit is contained in:
Gargithakur01
2026-04-01 16:11:23 +05:30
parent d1a514b832
commit 59d39ec66a
+1 -1
View File
@@ -156,7 +156,7 @@ func getAuth(clientId, clientSecret, clientCert, tenantId, subscriptionId, regis
if clientCert != "" {
err := setupACRCert(clientCert, acrCertPath)
if err != nil {
fmt.Errorf("failed to push setup cert file: %w", err)
return "", "", fmt.Errorf("failed to push setup cert file: %w", err)
}
}