mirror of
https://github.com/logos-messaging/logos-delivery.git
synced 2026-08-11 06:13:16 +00:00
11 lines
95 B
Bash
11 lines
95 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
echo $@
|
||
|
|
|
||
|
|
die() {
|
||
|
|
exit 143; # 128 + 15 -- SIGTERM
|
||
|
|
}
|
||
|
|
|
||
|
|
trap 'die' SIGINT
|
||
|
|
|
||
|
|
make "$@"
|