Skip to content

Commit 7b386ea

Browse files
committedJun 2, 2018
fix build file template
See #1035
·
0.15.20.3.0
1 parent a3d7a80 commit 7b386ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎std/special/build_file_template.zig‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ pub fn build(b: *Builder) void {
55
const exe = b.addExecutable("YOUR_NAME_HERE", "src/main.zig");
66
exe.setBuildMode(mode);
77

8-
b.default_step.dependOn(*exe.step);
8+
b.default_step.dependOn(&exe.step);
99
b.installArtifact(exe);
1010
}

0 commit comments

Comments
 (0)
Please sign in to comment.