feat: port forwarding

This commit is contained in:
tobyxdd 2023-07-02 15:40:16 -07:00
parent 8ca414e548
commit 7e177a22f7
14 changed files with 592 additions and 153 deletions

View file

@ -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():