mirror of
https://github.com/rclone/rclone.git
synced 2024-12-03 05:45:24 +01:00
15 lines
324 B
Bash
15 lines
324 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
go tool dist list >/dev/null || {
|
||
|
echo 1>&2 "go tool dist list not supported - can't check compile"
|
||
|
exit 0
|
||
|
}
|
||
|
|
||
|
while read -r line; do
|
||
|
parts=(${line//\// })
|
||
|
export GOOS=${parts[0]}
|
||
|
export GOARCH=${parts[1]}
|
||
|
echo Try GOOS=${GOOS} GOARCH=${GOARCH}
|
||
|
go install
|
||
|
done < <(go tool dist list)
|