deb: fix bug in find_dsc_file
CI / build (push) Failing after 5m35s

This commit is contained in:
2026-01-09 23:15:13 +01:00
parent dd62baa455
commit a444a5d8d2
6 changed files with 37 additions and 1 deletions
+4
View File
@@ -78,6 +78,10 @@ impl ContextDriver for LocalDriver {
fn write_file(&self, path: &Path, content: &str) -> io::Result<()> {
std::fs::write(path, content)
}
fn exists(&self, path: &Path) -> io::Result<bool> {
Ok(path.exists())
}
}
fn copy_dir_recursive(src: &Path, dest: &Path) -> io::Result<()> {