Skip to content

Commit 7688d7d

Browse files
committed
fix(cli): 🐛 surrounded url with angular brackets
This prevents some parsers (e.g. VS Code) from including the `!`. Closes #24.
1 parent 4838ba4 commit 7688d7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/perseus-cli/src/serve.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ fn run_server(exec: Arc<Mutex<String>>, dir: PathBuf, did_build: bool) -> Result
139139
.map_err(|err| ErrorKind::PortNotNumber(err.to_string()))?;
140140
// Give the user a nice informational message
141141
println!(
142-
" {} {} 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.",
142+
" {} {} 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.",
143143
style(format!("[{}/{}]", num_steps, num_steps)).bold().dim(),
144144
SERVING,
145145
host=host,

0 commit comments

Comments
 (0)