From a9824cd47c1927ffc4eca040d60aecaa26130329 Mon Sep 17 00:00:00 2001 From: Daniel Martí Date: Fri, 10 Mar 2017 17:15:46 +0000 Subject: *.bash: always use the same string equality operator POSIX Shell only supports = to compare variables inside '[' tests. But this is Bash, where == is an alias for =. In practice they're the same, but the current form is inconsisnent and breaks POSIX for no good reason. Change-Id: I38fa7a5a90658dc51acc2acd143049e510424ed8 Reviewed-on: https://go-review.googlesource.com/38031 Reviewed-by: Ian Lance Taylor Run-TryBot: Ian Lance Taylor TryBot-Result: Gobot Gobot --- src/iostest.bash | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/iostest.bash') diff --git a/src/iostest.bash b/src/iostest.bash index 5e09894852..595b675744 100755 --- a/src/iostest.bash +++ b/src/iostest.bash @@ -24,11 +24,11 @@ if [ "$GOARCH" != "arm" ] && [ "$GOARCH" != "arm64" ]; then echo "iostest.bash requires GOARCH=arm or GOARCH=arm64, got GOARCH=$GOARCH" 1>&2 exit 1 fi -if [ "$GOARCH" == "arm" ]; then +if [ "$GOARCH" = "arm" ]; then export GOARM=7 fi -if [ "$1" == "-restart" ]; then +if [ "$1" = "-restart" ]; then # Reboot to make sure previous runs do not interfere with the current run. # It is reasonably easy for a bad program leave an iOS device in an # almost unusable state. @@ -60,7 +60,7 @@ GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH go build \ -o ../bin/go_darwin_${GOARCH}_exec \ ../misc/ios/go_darwin_arm_exec.go -if [ "$GOIOS_DEV_ID" == "" ]; then +if [ "$GOIOS_DEV_ID" = "" ]; then echo "detecting iOS development identity" eval $(GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH go run ../misc/ios/detect.go) fi -- cgit v1.3