Commit ca58118f authored by wooway777's avatar wooway777
Browse files

issue/940 - check build result and implicitly require build.py for build ntops

parent 32340fc3
......@@ -21,9 +21,14 @@ def _find_and_build_ops():
if not ninetoothed_path.is_dir():
continue
build_file = ninetoothed_path / "build.py"
if not build_file.exists():
continue
futures.append(executor.submit(_build, ninetoothed_path))
concurrent.futures.as_completed(futures)
for future in concurrent.futures.as_completed(futures):
future.result()
def _build(ninetoothed_path):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment