delve/scripts/testsign
Derek Parker 10910929b8 all: Use -exec flag to codesign test binary on OSX
Replaces a lot of ugly Makefile nonsense with a script that codesigns
the test binary before it runs. Only applicable to OSX test runs.
2015-10-09 17:56:09 -07:00

4 lines
49 B
Bash
Executable File

#!/usr/bin/env bash
codesign -s $CERT $1
exec $1