mirror of
https://github.com/go-delve/delve.git
synced 2025-10-27 20:23:41 +08:00
Replaces a lot of ugly Makefile nonsense with a script that codesigns the test binary before it runs. Only applicable to OSX test runs.
4 lines
49 B
Bash
Executable File
4 lines
49 B
Bash
Executable File
#!/usr/bin/env bash
|
|
codesign -s $CERT $1
|
|
exec $1
|