mirror of
https://github.com/minio/minio.git
synced 2024-12-27 07:35:55 -05:00
7 lines
95 B
Bash
7 lines
95 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
export CGO_ENABLED=0
|
||
|
for dir in docs/debugging/*/; do
|
||
|
go build -C ${dir} -v
|
||
|
done
|