mirror of
https://codeberg.org/icewind/haze.git
synced 2026-06-03 17:14:08 +02:00
allow using release sources
This commit is contained in:
parent
8941c697fb
commit
f569ca17e2
9 changed files with 1226 additions and 113 deletions
|
|
@ -103,13 +103,18 @@ async fn main() -> Result<ExitCode> {
|
|||
services.push(cloud.db().name());
|
||||
let services = services.join(", ");
|
||||
let pin = if cloud.pinned { "*" } else { "" };
|
||||
let version = match cloud.options.version.as_ref() {
|
||||
Some(version) => format!(", v{version}"),
|
||||
None => String::new(),
|
||||
};
|
||||
println!(
|
||||
"Cloud {}{}, {}, {}, running on {}",
|
||||
"Cloud {}{}, {}, {}{}, running on {}",
|
||||
cloud.id,
|
||||
pin,
|
||||
cloud.php().name(),
|
||||
services,
|
||||
cloud.address
|
||||
version,
|
||||
cloud.address,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue