Skip to content

Commit 8b7b17e

Browse files
committed
fixed binaries not being added to dependencies
Signed-off-by: Zen <[email protected]>
1 parent e817443 commit 8b7b17e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ugrd/base/core.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__author__ = 'desultory'
2-
__version__ = '1.2.3'
2+
__version__ = '1.2.4'
33

44
from pathlib import Path
55
from typing import Union
@@ -168,6 +168,7 @@ def _process_binaries_multi(self, binary: str) -> None:
168168

169169
dependencies = calculate_dependencies(self, binary)
170170
# The first dependency will be the path of the binary itself, don't add this to the library paths
171+
self['dependencies'] = dependencies[0]
171172
for dependency in dependencies[1:]:
172173
self['dependencies'] = dependency
173174
if str(dependency.parent) not in self['library_paths']:

0 commit comments

Comments
 (0)