fix: Use sudo for login when using rechunk

This commit is contained in:
Gerald Pinder 2025-03-26 13:56:16 -04:00
parent 7f8095d283
commit 185a34f86b
7 changed files with 20 additions and 9 deletions

View file

@ -327,8 +327,8 @@ impl BuildDriver for Driver {
impl_build_driver!(push(opts))
}
fn login() -> Result<()> {
impl_build_driver!(login())
fn login(privileged: bool) -> Result<()> {
impl_build_driver!(login(privileged))
}
#[cfg(feature = "prune")]