minio/docs/debugging/build.sh
2023-09-18 13:47:03 -07:00

7 lines
95 B
Bash
Executable File

#!/bin/bash
export CGO_ENABLED=0
for dir in docs/debugging/*/; do
go build -C ${dir} -v
done