From 7688d7d4ebab0682dbdd1422f7df3feca117a30f Mon Sep 17 00:00:00 2001 From: arctic_hen7 Date: Sat, 25 Sep 2021 06:50:10 +1000 Subject: [PATCH] =?UTF-8?q?fix(cli):=20=F0=9F=90=9B=20surrounded=20url=20w?= =?UTF-8?q?ith=20angular=20brackets?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This prevents some parsers (e.g. VS Code) from including the `!`. Closes #24. --- packages/perseus-cli/src/serve.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/perseus-cli/src/serve.rs b/packages/perseus-cli/src/serve.rs index 4b5141f64c..0e81187ba8 100644 --- a/packages/perseus-cli/src/serve.rs +++ b/packages/perseus-cli/src/serve.rs @@ -139,7 +139,7 @@ fn run_server(exec: Arc>, dir: PathBuf, did_build: bool) -> Result .map_err(|err| ErrorKind::PortNotNumber(err.to_string()))?; // Give the user a nice informational message println!( - " {} {} Your app is now live on http://{host}:{port}! To change this, re-run this command with different settings of the HOST/PORT environment variables.", + " {} {} Your app is now live on ! To change this, re-run this command with different settings of the HOST/PORT environment variables.", style(format!("[{}/{}]", num_steps, num_steps)).bold().dim(), SERVING, host=host,