mirror of
https://codeberg.org/icewind/haze.git
synced 2026-06-03 17:14:08 +02:00
occ
This commit is contained in:
parent
b4bcb29f8e
commit
e373f33cff
1 changed files with 6 additions and 0 deletions
|
|
@ -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!(),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue