Skip to content

Commit

Permalink
gpu-dawn: fix bad merge
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen Gutekanst <[email protected]>
  • Loading branch information
emidoots committed Mar 31, 2022
1 parent b6fdcef commit 17e8c8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -448,9 +448,9 @@ fn downloadFile(allocator: std.mem.Allocator, target_file: []const u8, url: []co
_ = try child.spawnAndWait();
}

fn ensureCanDownloadFiles(allocator: std.mem.Allocator) !void {
fn ensureCanDownloadFiles(allocator: std.mem.Allocator) void {
const argv = &[_][]const u8{ "curl", "--version" };
const result = try std.ChildProcess.exec(.{
const result = std.ChildProcess.exec(.{
.allocator = allocator,
.argv = argv,
.cwd = thisDir(),
Expand Down

0 comments on commit 17e8c8b

Please sign in to comment.