Skip folder named zig while searching for zig executable on *nix

This commit is contained in:
root 2020-11-23 22:14:50 -06:00
parent ff917c08fd
commit b208a33286

View File

@ -34,6 +34,12 @@ pub fn config(step: *std.build.Step) anyerror!void {
});
defer allocator.free(full_path);
// Skip folders named zig
const file = std.fs.openFileAbsolute(full_path, .{}) catch continue;
const stat = file.stat() catch continue;
const is_dir = stat.kind == .Directory ;
if(is_dir) continue ;
var buf: [std.fs.MAX_PATH_BYTES]u8 = undefined;
zig_exe_path = try std.mem.dupe(allocator, u8, std.os.realpath(full_path, &buf) catch continue);
break :find_zig;