| ... | ... | @@ -6929,9 +6929,9 @@ fn accessFrameworkPath( |
| 6929 | 6929 | ) !bool { |
| 6930 | 6930 | const sep = fs.path.sep_str; |
| 6931 | 6931 | |
| 6932 | | for (&[_][]const u8{ "tbd", "dylib" }) |ext| { |
| 6932 | for (&[_][]const u8{ ".tbd", ".dylib", "" }) |ext| { |
| 6933 | 6933 | test_path.clearRetainingCapacity(); |
| 6934 | | try test_path.writer().print("{s}" ++ sep ++ "{s}.framework" ++ sep ++ "{s}.{s}", .{ |
| 6934 | try test_path.writer().print("{s}" ++ sep ++ "{s}.framework" ++ sep ++ "{s}{s}", .{ |
| 6935 | 6935 | framework_dir_path, |
| 6936 | 6936 | framework_name, |
| 6937 | 6937 | framework_name, |