File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -557,9 +557,9 @@ function replaceCmj(x) {
557
557
* @param {string } y
558
558
*/
559
559
function sourceToTarget ( y ) {
560
- if ( y . endsWith ( ".ml" ) || y . endsWith ( ".re" ) ) {
560
+ if ( y . endsWith ( ".ml" ) || y . endsWith ( ".re" ) || y . endsWith ( ".res" ) ) {
561
561
return replaceExt ( y , ".cmj" ) ;
562
- } else if ( y . endsWith ( ".mli" ) || y . endsWith ( ".rei" ) ) {
562
+ } else if ( y . endsWith ( ".mli" ) || y . endsWith ( ".rei" ) || y . endsWith ( ".resi" ) ) {
563
563
return replaceExt ( y , ".cmi" ) ;
564
564
}
565
565
return y ;
@@ -1201,6 +1201,8 @@ ${mllList(ninjaCwd, [
1201
1201
return (
1202
1202
x . endsWith ( ".re" ) ||
1203
1203
x . endsWith ( ".rei" ) ||
1204
+ x . endsWith ( ".resi" ) ||
1205
+ x . endsWith ( ".res" ) ||
1204
1206
( ( x . endsWith ( ".ml" ) || x . endsWith ( ".mli" ) ) && ! x . endsWith ( "bspack.ml" ) )
1205
1207
) ;
1206
1208
} ) ;
You can’t perform that action at this time.
0 commit comments