10 lines
128 B
Plaintext
10 lines
128 B
Plaintext
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
set -o errexit
|
||
|
|
set -o nounset
|
||
|
|
|
||
|
|
test -z "${DEBUG:-}" || {
|
||
|
|
set -x
|
||
|
|
}
|
||
|
|
|
||
|
|
go build -o bin/actions-sync main.go
|