From 5dc2e2f7c44a0b33dc34f5e47d9ca095d331c87b Mon Sep 17 00:00:00 2001 From: Elias Naur Date: Wed, 24 Oct 2018 15:27:35 +0200 Subject: [PATCH] misc/ios: remove note from output of detect.go If no GOIOS_DEV_ID is set, iostest.bash will eval the output of detect.go. Prepend the note output by detect.go with # to make the shell ignore it. Went undetected for so long because the iOS builders usually run with GOIOS_DEV_ID set. Change-Id: I308eac94803851620ca91593f9a1aef79825187f Reviewed-on: https://go-review.googlesource.com/c/144109 Run-TryBot: Elias Naur TryBot-Result: Gobot Gobot Reviewed-by: Hyang-Ah Hana Kim --- misc/ios/detect.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/misc/ios/detect.go b/misc/ios/detect.go index 2594185c11..1d47e47c86 100644 --- a/misc/ios/detect.go +++ b/misc/ios/detect.go @@ -33,9 +33,9 @@ func main() { fail("did not find mobile provision matching device udids %q", udids) } - fmt.Println("Available provisioning profiles below.") - fmt.Println("NOTE: Any existing app on the device with the app id specified by GOIOS_APP_ID") - fmt.Println("will be overwritten when running Go programs.") + fmt.Println("# Available provisioning profiles below.") + fmt.Println("# NOTE: Any existing app on the device with the app id specified by GOIOS_APP_ID") + fmt.Println("# will be overwritten when running Go programs.") for _, mp := range mps { fmt.Println() f, err := ioutil.TempFile("", "go_ios_detect_")