mirror of
https://github.com/open-policy-agent/opa.git
synced 2026-08-12 19:32:48 -06:00
b15601876e
Signed-off-by: Stephan Renatus <stephan.renatus@gmail.com>
11 lines
165 B
Go
11 lines
165 B
Go
package topdown
|
|
|
|
func fixupDarwinGo118(x, y string) string {
|
|
switch x {
|
|
case "x509: certificate signed by unknown authority":
|
|
return y
|
|
default:
|
|
return x
|
|
}
|
|
}
|