mirror of
https://github.com/buckit-io/buckit.git
synced 2026-09-12 05:49:02 +00:00
10 lines
158 B
Bash
Executable File
10 lines
158 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
export CGO_ENABLED=0
|
|
for dir in docs/debugging/*/; do
|
|
bin=$(basename "${dir}")
|
|
go build -C "${dir}" -o "${PWD}/${bin}"
|
|
done
|