2022-05-10 18:25:04 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
|
|
|
# Compile application and run with provided arguments
|
|
|
|
set -e
|
|
|
|
|
|
|
|
PROGRAM_NAME="nodebalancer"
|
|
|
|
|
2022-07-11 14:01:10 +00:00
|
|
|
go build -o "$PROGRAM_NAME" cmd/nodebalancer/*.go
|
2022-05-10 18:25:04 +00:00
|
|
|
|
|
|
|
./"$PROGRAM_NAME" "$@"
|