mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-10 12:01:48 -04:00
8 lines
119 B
Bash
Executable File
8 lines
119 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
cd "$( dirname "${BASH_SOURCE[0]}" )"
|
|
[ -x main ] || go build -o main .
|
|
exec ./main "$@"
|