fmt
CI / build (push) Successful in 2m46s
CI / test (push) Skipped
CI / snap (push) Failing after 28s

This commit is contained in:
2026-09-10 15:31:17 +02:00
parent c7af3bc9b1
commit 3b99ece39a
+1 -3
View File
@@ -184,9 +184,7 @@ async fn build_binary_package_impl(
let mut artifacts = Vec::with_capacity(total_debs);
for (idx, remote_file) in remote_files.iter().enumerate() {
let file_name = remote_file
.file_name()
.ok_or("Invalid remote filename")?;
let file_name = remote_file.file_name().ok_or("Invalid remote filename")?;
let local_dest = parent_dir.join(file_name);
build_ctx.retrieve_path(remote_file, &local_dest)?;
artifacts.push(local_dest);