Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cirospaciari committed Jan 21, 2025
1 parent da8c960 commit b915e58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bun.js/webcore/S3Client.zig
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,13 @@ pub const S3Client = struct {
try writer.writeAll(comptime bun.Output.prettyFmt("<r>S3Client<r>", enable_ansi_colors));
if (this.credentials.bucket.len > 0) {
try writer.print(
comptime bun.Output.prettyFmt(" (<green>\"{s}\"<r>)<r> {", enable_ansi_colors),
comptime bun.Output.prettyFmt(" (<green>\"{s}\"<r>)<r> {{", enable_ansi_colors),
.{
this.credentials.bucket,
},
);
} else {
try writer.writeAll(comptime bun.Output.prettyFmt(" {", enable_ansi_colors));
try writer.writeAll(" {");
}

try writeFormatCredentials(this.credentials, this.options, this.acl, Formatter, formatter, writer, enable_ansi_colors);
Expand Down

0 comments on commit b915e58

Please sign in to comment.