diff --git a/appmgr/src/install.rs b/appmgr/src/install.rs index df86afb3c..c6fde752e 100644 --- a/appmgr/src/install.rs +++ b/appmgr/src/install.rs @@ -373,7 +373,7 @@ pub async fn install_v0( .with_code(crate::error::FILESYSTEM_ERROR)?; } } - src.unpack_in(&dst_path).await?; + src.unpack_in(&dst_path).compat().await?; if src.header().entry_type().is_dir() { loop { let mut file = entries @@ -387,7 +387,7 @@ pub async fn install_v0( { break; } else { - file.unpack_in(&dst_path).await?; + file.unpack_in(&dst_path).compat().await?; } } }