mirror of
https://github.com/minio/minio.git
synced 2026-04-15 14:29:49 -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
|