From 13380903e98ed33a30f19a5e1cd22a714532903e Mon Sep 17 00:00:00 2001 From: Arunesh Date: Sun, 2 May 2021 02:51:18 +0200 Subject: [PATCH] Updated cloudflared download link --- src/tail/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tail/mod.rs b/src/tail/mod.rs index 691794d21..b546fa2f4 100644 --- a/src/tail/mod.rs +++ b/src/tail/mod.rs @@ -93,7 +93,7 @@ impl Tail { fn is_cloudflared_installed() -> Result<()> { // this can be removed once we automatically install cloudflared if which("cloudflared").is_err() { - let install_url = style("https://developers.cloudflare.com/argo-tunnel/downloads/") + let install_url = style("https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/install-and-setup/installation") .blue() .bold(); anyhow::bail!("You must install cloudflared to use wrangler tail.\n\nInstallation instructions can be found here:\n{}", install_url);