1
0
Fork 0
mirror of https://codeberg.org/icewind/haze.git synced 2026-06-04 01:24:09 +02:00
This commit is contained in:
Robin Appelman 2021-03-12 22:47:36 +01:00
commit e373f33cff

View file

@ -74,6 +74,12 @@ async fn main() -> Result<()> {
let cloud = get_by_filter(&mut docker, None, &config).await?; let cloud = get_by_filter(&mut docker, None, &config).await?;
cloud.exec(&mut docker, args.options).await?; cloud.exec(&mut docker, args.options).await?;
} }
HazeCommand::Occ => {
let cloud = get_by_filter(&mut docker, None, &config).await?;
let mut options = args.options;
options.insert(0, "occ".to_string());
cloud.exec(&mut docker, options).await?;
}
_ => todo!(), _ => todo!(),
}; };