7 lines
120 B
Bash
Executable file
7 lines
120 B
Bash
Executable file
#!/bin/sh
|
|
set -eu
|
|
cd -- "$(dirname "$0")/.."
|
|
. ./ci/sub/lib.sh
|
|
|
|
sh_c go build --tags=dev -o=bin/d2 .
|
|
sh_c ./bin/d2 "$@"
|