mirror of
https://github.com/minio/minio.git
synced 2026-03-26 12:39:55 -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
|