mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
12 lines
101 B
Bash
Executable File
12 lines
101 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
function raise()
|
|
{
|
|
kill -$1 0
|
|
}
|
|
|
|
trap "raise SIGINT" SIGINT
|
|
make $1
|