Skip to content

Commit

Permalink
releng: Fix calling of cleanSuite in rmake
Browse files Browse the repository at this point in the history
  • Loading branch information
jajik committed Sep 1, 2024
1 parent 2bec501 commit 99230a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions releng/tools/rmake
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def build(patterns, maxThreads):
targetsToCompile.sort(key=lambda x: x.suite)

for s in suitesToClean:
cleanSuite(s, maxThreads)
cleanSuite(s)

for s in suitesToCompile:
compileSuite(s, maxThreads)
Expand Down Expand Up @@ -196,7 +196,7 @@ def test(patterns, maxThreads):
targetsToCompile.sort(key=lambda x: x.suite)

for s in suitesToClean:
cleanSuite(s, maxThreads)
cleanSuite(s)

compileTargets(targetsToCompile, maxThreads)

Expand Down

0 comments on commit 99230a8

Please sign in to comment.