Skip to content

Commit 768463d

Browse files
committed
Revert "workaround ziglang/zig#21747"
This reverts commit ea2c303.
1 parent 43725e9 commit 768463d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

build.zig

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -373,11 +373,9 @@ fn release(b: *Build, target_queries: []const std.Target.Query, release_artifact
373373
.target = b.graph.host,
374374
.root_source_file = b.path("src/tools/publish_http_form.zig"),
375375
});
376-
_ = publish_exe;
377376

378-
// workaround: https://github.com/ziglang/zig/issues/21747
379-
var publish_artifacts = b.addSystemCommand(&.{"curl"});
380-
// var publish_artifacts = b.addRunArtifact(publish_exe);
377+
// var publish_artifacts = b.addSystemCommand("curl")
378+
var publish_artifacts = b.addRunArtifact(publish_exe);
381379
publish_step.dependOn(&publish_artifacts.step);
382380

383381
publish_artifacts.addArgs(&.{

0 commit comments

Comments
 (0)