github.com/kchristidis/fabric@v1.0.4-0.20171028114726-837acd08cde1/devenv/golang_buildcmd.sh (about) 1 #!/bin/sh 2 # 3 # Copyright IBM Corp. All Rights Reserved. 4 # 5 # SPDX-License-Identifier: Apache-2.0 6 # 7 8 set -e 9 for arch in 8 6; do 10 for cmd in a c g l; do 11 go tool dist install -v cmd/$arch$cmd 12 done 13 done 14 exit 0