Commit 8870ead9b2
Changed files (1)
src
src/main.zig
@@ -6929,9 +6929,9 @@ fn accessFrameworkPath(
) !bool {
const sep = fs.path.sep_str;
- for (&[_][]const u8{ "tbd", "dylib" }) |ext| {
+ for (&[_][]const u8{ ".tbd", ".dylib", "" }) |ext| {
test_path.clearRetainingCapacity();
- try test_path.writer().print("{s}" ++ sep ++ "{s}.framework" ++ sep ++ "{s}.{s}", .{
+ try test_path.writer().print("{s}" ++ sep ++ "{s}.framework" ++ sep ++ "{s}{s}", .{
framework_dir_path,
framework_name,
framework_name,