From ad0e02081e11bc8b50fae1c43eece3342c8642f0 Mon Sep 17 00:00:00 2001 From: Matt Silverlock Date: Sun, 2 Jun 2019 11:42:45 -0700 Subject: [PATCH] ux: add HTTP prefix to publish command output. Prefix "https://" in front of the "script available" output to allow shells to automatically detect it as a link. --- src/commands/publish/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/publish/mod.rs b/src/commands/publish/mod.rs index 220bc0004..40f55bdbe 100644 --- a/src/commands/publish/mod.rs +++ b/src/commands/publish/mod.rs @@ -172,7 +172,7 @@ fn make_public_on_subdomain(project: &Project, user: &GlobalUser) -> Result<(), if res.status().is_success() { println!( - "🥳 Successfully made your script available at {}.{}.workers.dev", + "🥳 Successfully made your script available at https://{}.{}.workers.dev", project.name, subdomain ); } else {