mirror of
https://github.com/cloudnativelabs/kube-router.git
synced 2025-10-17 12:51:06 +02:00
* Use libnetwork/ipvs alternative * PR image tag simplification * Remove nested vendor directories
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
|