k3s/scripts/dev-server.sh
Joakim Roubert bb0b4db228
Let variable handle go binary name in scripts (#1532)
During e.g. cross-compiling, it is sometimes useful to be able to have
another binary than the default one as the compiler. This patch for the
build scripts lets "go" be the default value for the variable GO, and
the latter is then used as the go compiler.

Change-Id: I0adf7a661b26593d9b0ea902a61b631b80e76ae7
Signed-off-by: Joakim Roubert <joakimr@axis.com>
2020-03-25 12:35:07 -07:00

16 lines
260 B
Bash
Executable File

#!/bin/bash
set -e
GO=${GO-go}
mkdir -p $(dirname $0)/../bin
cd $(dirname $0)/../bin
echo Running
ARGS="--disable-agent"
if echo -- "$@" | grep -q rootless; then
ARGS=""
PATH=$(pwd):$PATH
fi
"${GO}" run -tags "apparmor" ../main.go server $ARGS "$@"