Skip to content

Commit d2d976f

Browse files
committed
dep-hash: use 4 space indent in graph mode
1 parent e5b4085 commit d2d976f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/compiler/dep-hash.zig

+2-2
Original file line numberDiff line numberDiff line change
@@ -219,12 +219,12 @@ fn graphInner(
219219
try writer.writeByteNTimes(' ', longest_name - name.len);
220220

221221
if (dep.hash) |hash|
222-
try writer.print("{s}", .{hash})
222+
try writer.print(" {s}", .{hash})
223223
else switch (dep.location) {
224224
.url => try writer.writeAll("(missing)"),
225225
.path => |p| {
226226
const path = try build_root.resolvePosix(allocator, p);
227-
try writer.print("{s} (local)", .{path.sub_path});
227+
try writer.print(" {s} (local)", .{path.sub_path});
228228
allocator.free(path.sub_path);
229229
},
230230
}

0 commit comments

Comments
 (0)