Skip to content

Commit c503677

Browse files
committed
fixed existing library path check
Signed-off-by: Zen <[email protected]>
1 parent e3d6bd9 commit c503677

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ugrd/base/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def _process_binaries_multi(self, binary):
118118
self.logger.debug("Skipping adding library path for first dependency: %s" % dependency)
119119
first_dep = False
120120
continue
121-
if dependency.parent not in self['library_paths']:
121+
if str(dependency.parent) not in self['library_paths']:
122122
self.logger.info("Adding library path: %s" % dependency.parent)
123123
# Make it a string so NoDupFlatList can handle it
124124
# It being derived from a path should ensure it's a proper path

0 commit comments

Comments
 (0)