
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
|