8 lines
286 B
Bash
8 lines
286 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# Start huskies via the codesign-heal wrapper.
|
||
|
|
#
|
||
|
|
# The wrapper at ~/bin/huskies re-signs the underlying binary if needed before
|
||
|
|
# exec-ing it, so a missed re-sign after a build/copy never produces a silent
|
||
|
|
# SIGKILL on Apple Silicon.
|
||
|
|
exec "${HOME}/bin/huskies" "$@"
|