From c4de1da7b12cc8b56ed0b5130c47cedb489de9b0 Mon Sep 17 00:00:00 2001 From: Blue Date: Sun, 13 Aug 2023 23:53:13 -0600 Subject: [PATCH] fix issue --- project_setup.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/project_setup.sh b/project_setup.sh index c22d242..4b6f37d 100755 --- a/project_setup.sh +++ b/project_setup.sh @@ -33,6 +33,7 @@ pub fn build(b: *std.Build) !void { run_step.step.dependOn(&link_step.step); const run_option = b.step("run", "Run '$PROJECT_NAME'"); run_option.dependOn(&run_step.step); + return; } const exe = b.addExecutable(.{ .name = "'$PROJECT_NAME'", .root_source_file = .{ .path = "src/main.zig" }, .optimize = optimize, .target = target });