Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Rausch (0.15 sec)

  1. misc/ios/go_ios_exec.go

    }
    
    func runSimulator(appdir, bundleID string, args []string) error {
    	cmd := exec.Command(
    		"xcrun", "simctl", "launch",
    		"--wait-for-debugger",
    		"booted",
    		bundleID,
    	)
    	out, err := cmd.CombinedOutput()
    	if err != nil {
    		os.Stderr.Write(out)
    		return fmt.Errorf("xcrun simctl launch booted %q: %v", bundleID, err)
    	}
    	var processID int
    	var ignore string
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
Back to top