From: David Crawshaw Date: Wed, 15 Apr 2015 19:03:41 +0000 (-0400) Subject: iostest.bash: run detect.go as part of iostest X-Git-Tag: go1.5beta1~1080 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=bfd441f745d649eba5560eb6a1a862fb2c952c60;p=gostls13.git iostest.bash: run detect.go as part of iostest Change-Id: I402629b154ae36c879a8d5088cb0f71b075f31dc Reviewed-on: https://go-review.googlesource.com/8958 Reviewed-by: Josh Bleecher Snyder --- diff --git a/src/iostest.bash b/src/iostest.bash index 865678f1da..5e09894852 100755 --- a/src/iostest.bash +++ b/src/iostest.bash @@ -60,5 +60,10 @@ GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH go build \ -o ../bin/go_darwin_${GOARCH}_exec \ ../misc/ios/go_darwin_arm_exec.go +if [ "$GOIOS_DEV_ID" == "" ]; then + echo "detecting iOS development identity" + eval $(GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH go run ../misc/ios/detect.go) +fi + # Run standard build and tests. ./all.bash --no-clean