Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/run/runner/helpers/apt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ pub fn install(system_info: &SystemInfo, packages: &[&str]) -> Result<()> {
/// Restore cached tools from the cache directory to the root filesystem
fn restore_from_cache(system_info: &SystemInfo, cache_dir: &Path) -> Result<()> {
if !is_system_compatible(system_info) {
warn!("Cache restore is not supported on this system, skipping");
info!("Cache restore is not supported on this system, skipping");
return Ok(());
}

Expand Down Expand Up @@ -166,7 +166,7 @@ fn restore_from_cache(system_info: &SystemInfo, cache_dir: &Path) -> Result<()>
/// Save installed packages to the cache directory
fn save_to_cache(system_info: &SystemInfo, cache_dir: &Path, packages: &[&str]) -> Result<()> {
if !is_system_compatible(system_info) {
warn!("Caching of installed package is not supported on this system, skipping");
info!("Caching of installed package is not supported on this system, skipping");
return Ok(());
}

Expand Down
Loading