Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jerrrrry
infinicore
Commits
ca58118f
Commit
ca58118f
authored
Jan 26, 2026
by
wooway777
Browse files
issue/940 - check build result and implicitly require build.py for build ntops
parent
32340fc3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
scripts/build_ntops.py
scripts/build_ntops.py
+6
-1
No files found.
scripts/build_ntops.py
View file @
ca58118f
...
...
@@ -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
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment