Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for idevCmd (0.24 sec)

  1. misc/ios/go_ios_exec.go

    func uninstallDevice(bundleID string) error {
    	cmd := idevCmd(exec.Command(
    		"ideviceinstaller",
    		"-U", bundleID,
    	))
    	if out, err := cmd.CombinedOutput(); err != nil {
    		os.Stderr.Write(out)
    		return fmt.Errorf("ideviceinstaller -U %q: %s", bundleID, err)
    	}
    	return nil
    }
    
    func installDevice(appdir string) error {
    	attempt := 0
    	for {
    		cmd := idevCmd(exec.Command(
    			"ideviceinstaller",
    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