Skip to content

Commit

Permalink
misc/ios: fixup review comments from CL 255257
Browse files Browse the repository at this point in the history
Change-Id: I247fc9e0e26e706e6af07367f953eaa1b7e544c1
Reviewed-on: https://go-review.googlesource.com/c/go/+/259577
Trust: Elias Naur <mail@eliasnaur.com>
Run-TryBot: Elias Naur <mail@eliasnaur.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
  • Loading branch information
eliasnaur committed Oct 5, 2020
1 parent 059ca61 commit 39d562e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion misc/ios/detect.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

// detect attempts to autodetect the correct
// values of the environment variables
// used by go_io_exec.
// used by go_ios_exec.
// detect shells out to ideviceinfo, a third party program that can
// be obtained by following the instructions at
// https://github.com/libimobiledevice/libimobiledevice.
Expand Down
8 changes: 4 additions & 4 deletions misc/ios/go_ios_exec.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ var lock *os.File

func main() {
log.SetFlags(0)
log.SetPrefix("go_darwin_arm_exec: ")
log.SetPrefix("go_ios_exec: ")
if debug {
log.Println(strings.Join(os.Args, " "))
}
if len(os.Args) < 2 {
log.Fatal("usage: go_darwin_arm_exec a.out")
log.Fatal("usage: go_ios_exec a.out")
}

// For compatibility with the old builders, use a fallback bundle ID
Expand All @@ -79,7 +79,7 @@ func main() {

func runMain() (int, error) {
var err error
tmpdir, err = ioutil.TempDir("", "go_darwin_arm_exec_")
tmpdir, err = ioutil.TempDir("", "go_ios_exec_")
if err != nil {
return 1, err
}
Expand All @@ -100,7 +100,7 @@ func runMain() (int, error) {
//
// The lock file is never deleted, to avoid concurrent locks on distinct
// files with the same path.
lockName := filepath.Join(os.TempDir(), "go_darwin_arm_exec-"+deviceID+".lock")
lockName := filepath.Join(os.TempDir(), "go_ios_exec-"+deviceID+".lock")
lock, err = os.OpenFile(lockName, os.O_CREATE|os.O_RDONLY, 0666)
if err != nil {
return 1, err
Expand Down

0 comments on commit 39d562e

Please sign in to comment.