minio/docs/debugging/build.sh

8 lines
133 B
Bash
Executable File

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