syntax correction
This commit is contained in:
parent
9bc2e35b2e
commit
36f43ae834
1 changed files with 2 additions and 2 deletions
|
@ -1818,7 +1818,7 @@ def setuptunnel():
|
||||||
tunnelproc = subprocess.Popen(f"cloudflared.exe tunnel --url localhost:{args.port}", text=True, encoding='utf-8', shell=True, stdout=subprocess.DEVNULL, stderr=subprocess.PIPE)
|
tunnelproc = subprocess.Popen(f"cloudflared.exe tunnel --url localhost:{args.port}", text=True, encoding='utf-8', shell=True, stdout=subprocess.DEVNULL, stderr=subprocess.PIPE)
|
||||||
else:
|
else:
|
||||||
print("Starting Cloudflare Tunnel for Linux...")
|
print("Starting Cloudflare Tunnel for Linux...")
|
||||||
tunnelproc = subprocess.Popen(f"cloudflared-linux-amd64 tunnel --url http://localhost:{args.port}", text=True, encoding='utf-8', shell=True, stdout=subprocess.DEVNULL, stderr=subprocess.PIPE)
|
tunnelproc = subprocess.Popen(f"./cloudflared-linux-amd64 tunnel --url http://localhost:{args.port}", text=True, encoding='utf-8', shell=True, stdout=subprocess.DEVNULL, stderr=subprocess.PIPE)
|
||||||
time.sleep(6)
|
time.sleep(6)
|
||||||
def tunnel_reader():
|
def tunnel_reader():
|
||||||
nonlocal tunnelproc,tunneloutput,tunnelrawlog
|
nonlocal tunnelproc,tunneloutput,tunnelrawlog
|
||||||
|
@ -1847,7 +1847,7 @@ def setuptunnel():
|
||||||
subprocess.run("curl -L https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-windows-amd64.exe -o cloudflared.exe", shell=True, capture_output=True, text=True, check=True, encoding='utf-8')
|
subprocess.run("curl -L https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-windows-amd64.exe -o cloudflared.exe", shell=True, capture_output=True, text=True, check=True, encoding='utf-8')
|
||||||
else:
|
else:
|
||||||
print("Downloading Cloudflare Tunnel for Linux...")
|
print("Downloading Cloudflare Tunnel for Linux...")
|
||||||
subprocess.run("curl -L https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64 -o 'cloudflared-linux-amd64'", shell=True, capture_output=True, text=True, check=True, encoding='utf-8')
|
subprocess.run("curl -L https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64 -o cloudflared-linux-amd64", shell=True, capture_output=True, text=True, check=True, encoding='utf-8')
|
||||||
subprocess.run("chmod +x 'cloudflared-linux-amd64'", shell=True)
|
subprocess.run("chmod +x 'cloudflared-linux-amd64'", shell=True)
|
||||||
tunnel_thread = threading.Thread(target=run_tunnel)
|
tunnel_thread = threading.Thread(target=run_tunnel)
|
||||||
tunnel_thread.start()
|
tunnel_thread.start()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue