We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6171ad4 commit 7b42692Copy full SHA for 7b42692
1 file changed
scripts/build_ntops.py
@@ -21,9 +21,14 @@ def _find_and_build_ops():
21
if not ninetoothed_path.is_dir():
22
continue
23
24
+ build_file = ninetoothed_path / "build.py"
25
+ if not build_file.exists():
26
+ continue
27
+
28
futures.append(executor.submit(_build, ninetoothed_path))
29
- concurrent.futures.as_completed(futures)
30
+ for future in concurrent.futures.as_completed(futures):
31
+ future.result()
32
33
34
def _build(ninetoothed_path):
0 commit comments