Skip to content

Commit

Permalink
fix: use constructed url for tunnel (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
aiji42 committed Aug 25, 2023
1 parent 9e6ad00 commit 306d5de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tunnel.ts
Expand Up @@ -48,7 +48,7 @@ export async function startTunnel(
}

const args = [
["--url", opts.url],
["--url", url],
opts.verifyTLS ? undefined : ["--no-tls-verify", ""],
].filter(Boolean) as [string, string][];

Expand Down

0 comments on commit 306d5de

Please sign in to comment.