فهرست منبع

build.zig: Clean up my mess (#4387)

Sage Hane 10 ماه پیش
والد
کامیت
dc5e6e0ad0
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      src/build.zig

+ 1 - 1
src/build.zig

@@ -68,7 +68,7 @@ fn srcDir(b: *std.Build) []const u8 {
             @compileError("Please take a look at this function again");
     }
 
-    const src_file = std.fs.path.relative(b.allocator, @src().file, ".") catch @panic("OOM");
+    const src_file = std.fs.path.relative(b.allocator, ".", @src().file) catch @panic("OOM");
     return std.fs.path.dirname(src_file) orelse ".";
 }