Protocol version, async pump, start some testing

This commit is contained in:
John Doty 2022-12-16 13:57:52 -08:00
parent 763ecd190e
commit 6f906d80a7
6 changed files with 237 additions and 38 deletions

View file

@ -1,5 +1,4 @@
#!/bin/env python3
import os
import subprocess
import sys
@ -14,6 +13,7 @@ def ssh(remote, *args):
def main(args):
local("cargo", "build")
local("cargo", "build", "--target=x86_64-unknown-linux-gnu")
remote = args[1]
print(f"Copying file to {remote}...")
@ -23,7 +23,7 @@ def main(args):
capture_output=True,
)
print(f"Starting process...")
print("Starting process...")
subprocess.run(["target/debug/fwd", remote])