mirror of
https://github.com/rancher/os.git
synced 2025-07-02 17:51:49 +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
|