gitlab.com/gitlab-org/labkit@v1.21.0/example/run-no-tracing (about) 1 #!/usr/bin/env bash 2 3 set -xeuo pipefail 4 IFS=$'\n\t' 5 6 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 7 cd "${SCRIPT_DIR}" 8 9 export GO111MODULE=off 10 11 go build router.go 12 13 ./router 14