Skip to content

Commit

Permalink
Avoid listing .so files as executables
Browse files Browse the repository at this point in the history
Related: #135
  • Loading branch information
ssbarnea committed Mar 19, 2023
1 parent ab4b918 commit db21d98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions samples/integration/typeshed.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
create_baseline_stubs
generate_proto_stubs
lint
sync_tensorflow_protobuf_stubs
up
1 change: 1 addition & 0 deletions src/mk/tools/shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ def actions(self) -> List[Action]:
os.path.isfile(filename)
and os.access(filename, os.X_OK)
and filename not in exclude_list
and not filename.endswith(".so")
):
name = os.path.splitext(os.path.basename(filename))[0]
actions.append(
Expand Down

0 comments on commit db21d98

Please sign in to comment.