1
0
Fork 0
mirror of https://codeberg.org/icewind/haze.git synced 2026-06-03 17:14:08 +02:00
This commit is contained in:
Robin Appelman 2025-03-04 22:14:12 +01:00
commit 28ad29ede3
3 changed files with 30 additions and 32 deletions

View file

@ -350,10 +350,10 @@ async fn main() -> Result<()> {
.ok_or_else(|| Report::msg(format!("{} is not running", cloud.id)))?;
let db_type = match cloud.db().family() {
DatabaseFamily::Sqlite => {
return Err(Report::msg("sqlite is not supported with `haze env`"))
return Err(Report::msg("sqlite is not supported with `haze env`"));
}
DatabaseFamily::Oracle => {
return Err(Report::msg("oracle is not supported with `haze env`"))
return Err(Report::msg("oracle is not supported with `haze env`"));
}
DatabaseFamily::Mysql | DatabaseFamily::MariaDB => "mysql",
DatabaseFamily::Postgres => "postgresql",