| ... | ... | @@ -118,8 +118,8 @@ pub const ModFile = struct { |
| 118 | 118 | .c_include_dirs = try item.mapping.get_string_array(alloc, "c_include_dirs"), |
| 119 | 119 | .c_source_flags = try item.mapping.get_string_array(alloc, "c_source_flags"), |
| 120 | 120 | .c_source_files = try item.mapping.get_string_array(alloc, "c_source_files"), |
| 121 | | .only_os = try u.list_remove(try u.split(alloc, item.mapping.get_string("only_os"), ","), ""), |
| 122 | | .except_os = try u.list_remove(try u.split(alloc, item.mapping.get_string("except_os"), ","), ""), |
| 121 | .only_os = try u.list_remove(alloc, try u.split(alloc, item.mapping.get_string("only_os"), ","), ""), |
| 122 | .except_os = try u.list_remove(alloc, try u.split(alloc, item.mapping.get_string("except_os"), ","), ""), |
| 123 | 123 | .yaml = item.mapping, |
| 124 | 124 | .deps = try dep_list_by_name(alloc, item.mapping, "dependencies"), |
| 125 | 125 | }); |