File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1340,6 +1340,9 @@ async def main():
13401340 kill_old_process (Path .cwd ().parent / "pid.txt" )
13411341 check_min_python_version (min_python_version = "3.11" , show_warning = True )
13421342
1343+ signal .signal (signal .SIGINT , signal_handler )
1344+ print ("Press Ctrl-C or Ctrl-Break to disconnect and quit." )
1345+
13431346 # Setup Node.js and Appium before other operations
13441347 setup_nodejs_appium ()
13451348 update_java_path ()
@@ -1351,9 +1354,6 @@ async def main():
13511354 asyncio .create_task (delete_old_automationlog_folders ())
13521355 await destroy_session ()
13531356
1354- signal .signal (signal .SIGINT , signal_handler )
1355- print ("Press Ctrl-C or Ctrl-Break to disconnect and quit." )
1356-
13571357 console = Console ()
13581358
13591359 try :
You can’t perform that action at this time.
0 commit comments