mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
12 lines
101 B
Bash
12 lines
101 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
function raise()
|
||
|
{
|
||
|
kill -$1 0
|
||
|
}
|
||
|
|
||
|
trap "raise SIGINT" SIGINT
|
||
|
make $1
|