Skip to content

Commit

Permalink
modified: ufade_gui.py
Browse files Browse the repository at this point in the history
  • Loading branch information
prosch88 committed Sep 5, 2024
1 parent 37ba0f9 commit fd85a68
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions ufade_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -3482,14 +3482,6 @@ def create_linux_shell_script():
os.chmod(script_file.name, 0o755)
return script_file.name

def create_mac_tunnel_script():
script_content = f"from pymobiledevice3.cli.remote import cli_tunneld\n\ncli_tunneld([\"-d\"])"
script_file = tempfile.NamedTemporaryFile(delete=False, suffix=".sh")
script_file.write(script_content.encode('utf-8'))
script_file.close()
os.chmod(script_file.name, 0o755)
return script_file.name

tunnel = False
try:
if sys.argv[1] == "tunnel":
Expand Down

0 comments on commit fd85a68

Please sign in to comment.