Skip to content

Commit

Permalink
fix build file template
Browse files Browse the repository at this point in the history
See #1035
  • Loading branch information
andrewrk committed Jun 2, 2018
1 parent a3d7a80 commit 7b386ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion std/special/build_file_template.zig
Expand Up @@ -5,6 +5,6 @@ pub fn build(b: *Builder) void {
const exe = b.addExecutable("YOUR_NAME_HERE", "src/main.zig");
exe.setBuildMode(mode);

b.default_step.dependOn(*exe.step);
b.default_step.dependOn(&exe.step);
b.installArtifact(exe);
}

0 comments on commit 7b386ea

Please sign in to comment.