(target target)
| 1298 | } |
| 1299 | |
| 1300 | func codesign(target target) { |
| 1301 | if goos == "darwin" { |
| 1302 | macosCodesign(target.BinaryName()) |
| 1303 | } |
| 1304 | } |
| 1305 | |
| 1306 | func macosCodesign(file string) { |
| 1307 | if pass := os.Getenv("CODESIGN_KEYCHAIN_PASS"); pass != "" { |
no test coverage detected