Skip to content

Commit

Permalink
build.zig: revert bad debug edit
Browse files Browse the repository at this point in the history
  • Loading branch information
archbirdplus committed Apr 27, 2024
1 parent 6c0bb49 commit 36834e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub fn build(b: *std.Build) !void {
exe.linkLibCpp();

// For the time being, MacOS cubyz_deps will not have released binaries.
const depsName = if (t.os.tag != .macos) "deps_local" else "deps";
const depsName = if (t.os.tag == .macos) "deps_local" else "deps";
const deps = b.lazyDependency(depsName, .{
.target = target,
.optimize = optimize,
Expand Down

0 comments on commit 36834e2

Please sign in to comment.