Browse Source

build: improve Exercise.addExecutable

Replace the file_path variable with path.
Manlio Perillo 2 years ago
parent
commit
3f81cdf3ac
1 changed files with 2 additions and 2 deletions
  1. 2 2
      build.zig

+ 2 - 2
build.zig

@@ -63,12 +63,12 @@ pub const Exercise = struct {
 
     /// Returns the CompileStep for this exercise.
     pub fn addExecutable(self: Exercise, b: *Build, work_path: []const u8) *CompileStep {
-        const file_path = join(b.allocator, &.{ work_path, self.main_file }) catch
+        const path = join(b.allocator, &.{ work_path, self.main_file }) catch
             @panic("OOM");
 
         return b.addExecutable(.{
             .name = self.name(),
-            .root_source_file = .{ .path = file_path },
+            .root_source_file = .{ .path = path },
             .link_libc = self.link_libc,
         });
     }