12 lines
96 B
Bash
Raw Permalink Normal View History

#!/bin/bash
echo $@
die() {
exit 143; # 128 + 15 -- SIGTERM
}
trap 'die' SIGINT
make "$@"