Skip to content

Commit 557c9f1

Browse files
committed
fix zstd file extension
1 parent 86d4775 commit 557c9f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ pub fn build(b: *std.Build) !void {
125125
}
126126

127127
{
128-
const name = b.fmt("ghostty-gobject-{s}.tar.zstd", .{version});
128+
const name = b.fmt("ghostty-gobject-{s}.tar.zst", .{version});
129129
const create_gobject_tarzstd = b.addSystemCommand(&.{ "zstd", "-c" });
130130
create_gobject_tarzstd.addFileArg(gobject_tar);
131131
const stdout = create_gobject_tarzstd.captureStdOut();
@@ -178,7 +178,7 @@ pub fn build(b: *std.Build) !void {
178178
}
179179

180180
{
181-
const name = b.fmt("ghostty-gir-{s}.tar.zstd", .{version});
181+
const name = b.fmt("ghostty-gir-{s}.tar.zst", .{version});
182182
const create_gir_tarzstd = b.addSystemCommand(&.{ "zstd", "-c" });
183183
create_gir_tarzstd.addFileArg(gir_tar);
184184
const stdout = create_gir_tarzstd.captureStdOut();

0 commit comments

Comments
 (0)