mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 04:27:39 +03:00
feat: port forwarding
This commit is contained in:
parent
8ca414e548
commit
7e177a22f7
14 changed files with 592 additions and 153 deletions
10
hyperbole.py
10
hyperbole.py
|
@ -3,6 +3,7 @@
|
|||
|
||||
import argparse
|
||||
import os
|
||||
import sys
|
||||
import subprocess
|
||||
import datetime
|
||||
import shutil
|
||||
|
@ -162,9 +163,11 @@ def cmd_run(args):
|
|||
|
||||
try:
|
||||
subprocess.check_call(cmd)
|
||||
except Exception:
|
||||
print('Failed to run app')
|
||||
return
|
||||
except KeyboardInterrupt:
|
||||
pass
|
||||
except subprocess.CalledProcessError as e:
|
||||
# Pass through the exit code
|
||||
sys.exit(e.returncode)
|
||||
|
||||
|
||||
def cmd_format():
|
||||
|
@ -176,7 +179,6 @@ def cmd_format():
|
|||
subprocess.check_call(['gofumpt', '-w', '-l', '-extra', '.'])
|
||||
except Exception:
|
||||
print('Failed to format code')
|
||||
return
|
||||
|
||||
|
||||
def cmd_clean():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue