mirror of
https://github.com/minio/minio
synced 2026-08-29 14:36:37 -04:00
6 lines
95 B
Bash
Executable file
6 lines
95 B
Bash
Executable file
#!/bin/bash
|
|
|
|
export CGO_ENABLED=0
|
|
for dir in docs/debugging/*/; do
|
|
go build -C ${dir} -v
|
|
done
|