We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e817443 commit 8b7b17eCopy full SHA for 8b7b17e
ugrd/base/core.py
@@ -1,5 +1,5 @@
1
__author__ = 'desultory'
2
-__version__ = '1.2.3'
+__version__ = '1.2.4'
3
4
from pathlib import Path
5
from typing import Union
@@ -168,6 +168,7 @@ def _process_binaries_multi(self, binary: str) -> None:
168
169
dependencies = calculate_dependencies(self, binary)
170
# The first dependency will be the path of the binary itself, don't add this to the library paths
171
+ self['dependencies'] = dependencies[0]
172
for dependency in dependencies[1:]:
173
self['dependencies'] = dependency
174
if str(dependency.parent) not in self['library_paths']:
0 commit comments