Skip to content

Commit

Permalink
avoid running shared object linking analysis twice
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan6419846 committed Jun 14, 2023
1 parent d03532d commit 7ef21b0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Development version

# Version 0.1.3 - 2023-06-14

* Avoid running shared object linking analysis twice.

# Version 0.1.2 - 2023-06-14

* Fix defaults for retrieval parameters.
Expand Down
3 changes: 1 addition & 2 deletions license_tools/scancode_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,7 @@ def run_on_file(
if retrieve_ldd_data:
results = check_shared_objects(path=path, short_path=short_path)
if results:
print(short_path)
print(check_shared_objects(path=path, short_path=short_path))
print(short_path + '\n' + results)
return FileResults(
path=path,
short_path=short_path,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
setuptools.setup(
name='license_tools',
description='Collection of tools for working with Open Source licenses',
version='0.1.2',
version='0.1.3',
license='Apache-2.0',
long_description=Path(ROOT_DIRECTORY / 'README.md').read_text(encoding='UTF-8'),
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 7ef21b0

Please sign in to comment.