mirror of
https://github.com/rancher/os.git
synced 2025-07-03 18:16:13 +00: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
|