Skip to content
This repository has been archived by the owner on Aug 3, 2023. It is now read-only.

ux: add HTTP prefix to publish command output. #198

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/commands/publish/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down