We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a189335 commit 6dbcc3bCopy full SHA for 6dbcc3b
src/Compilation.zig
@@ -4880,6 +4880,14 @@ fn docsCopyFallible(comp: *Compilation) anyerror!void {
4880
try seen_table.ensureUnusedCapacity(comp.gpa, deps.len);
4881
for (deps) |dep| seen_table.putAssumeCapacity(dep, dep.fully_qualified_name);
4882
}
4883
+
4884
+ tar_file_writer.end() catch |err| {
4885
+ return comp.lockAndSetMiscFailure(
4886
+ .docs_copy,
4887
+ "unable to write '{f}/sources.tar': {t}",
4888
+ .{ docs_path, err },
4889
+ );
4890
+ };
4891
4892
4893
fn docsCopyModule(
0 commit comments