if !base_path.exists() || !build_path.exists() {
    return Ok(());
}
// Replace this:
if !base_path.exists() || !build_path.exists() {
    return Ok(());
}

// With this:
if !build_path.exists() {
    return Ok(());
}
