Skip to content

Commit

Permalink
fix(cli): 🐛 surrounded url with angular brackets
Browse files Browse the repository at this point in the history
This prevents some parsers (e.g. VS Code) from including the `!`.

Closes #24.
  • Loading branch information
arctic-hen7 committed Sep 24, 2021
1 parent 4838ba4 commit 7688d7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/perseus-cli/src/serve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ fn run_server(exec: Arc<Mutex<String>>, 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 <http://{host}:{port}>! 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,
Expand Down

0 comments on commit 7688d7d

Please sign in to comment.