Skip to content

Commit 25c8c45

Browse files
committed
not including emacs temp file
1 parent 282c5fc commit 25c8c45

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/ninja.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1026,14 +1026,16 @@ ${ninjaQuickBuidList([
10261026
(x) =>
10271027
x.startsWith("js") &&
10281028
(x.endsWith(".ml") || x.endsWith(".mli")) &&
1029-
!x.includes(".cppo")
1029+
!x.includes(".cppo") &&
1030+
!x.includes("#")
10301031
);
10311032
var othersFiles = othersDirFiles.filter(
10321033
(x) =>
10331034
!x.startsWith("js") &&
10341035
x !== "belt.ml" &&
10351036
x !== "node.ml" &&
10361037
(x.endsWith(".ml") || x.endsWith(".mli")) &&
1038+
!x.includes("#") &&
10371039
!x.includes(".cppo") // we have node ..
10381040
);
10391041
var jsTargets = collectTarget(jsPrefixSourceFiles);

0 commit comments

Comments
 (0)