fix: main entry point is broken with version 0.11.0-dev.4228

This commit is contained in:
Nicolas Chataing 2023-07-25 14:59:17 +02:00
parent 477f18ebfc
commit 51a88cccf7

View file

@ -240,7 +240,7 @@ const ZiglingStep = struct {
std.os.exit(2); std.os.exit(2);
}; };
self.run(exe_path, prog_node) catch { self.run(exe_path.?, prog_node) catch {
self.printErrors(); self.printErrors();
if (self.exercise.hint) |hint| if (self.exercise.hint) |hint|
@ -350,7 +350,7 @@ const ZiglingStep = struct {
print("{s}PASSED{s}\n\n", .{ green_text, reset_text }); print("{s}PASSED{s}\n\n", .{ green_text, reset_text });
} }
fn compile(self: *ZiglingStep, prog_node: *std.Progress.Node) ![]const u8 { fn compile(self: *ZiglingStep, prog_node: *std.Progress.Node) !?[]const u8 {
print("Compiling {s}...\n", .{self.exercise.main_file}); print("Compiling {s}...\n", .{self.exercise.main_file});
const b = self.step.owner; const b = self.step.owner;