Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cli_common: Fix wait_return availability on Windows #811

Merged
merged 1 commit into from
Jan 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions pymobiledevice3/cli/cli_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import json
import logging
import os
import signal
import sys
import uuid
from typing import Callable, List, Mapping, Optional, Tuple
Expand Down Expand Up @@ -94,9 +93,13 @@ def get_last_used_terminal_formatting(buf: str) -> str:
return '\x1b' + buf.rsplit('\x1b', 1)[1].split('m')[0] + 'm'


def wait_return():
print("Press Ctrl+C to send a SIGINT or use 'kill' command to send a SIGTERM")
signal.sigwait([signal.SIGINT, signal.SIGTERM])
def wait_return() -> None:
if sys.platform != 'win32':
import signal
print("Press Ctrl+C to send a SIGINT or use 'kill' command to send a SIGTERM")
signal.sigwait([signal.SIGINT, signal.SIGTERM])
else:
input('Press ENTER to exit>')


UDID_ENV_VAR = 'PYMOBILEDEVICE3_UDID'
Expand Down
Loading