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 b21f4b6 commit 1554d21Copy full SHA for 1554d21
appimagebuilder/generator/apt_recipe_generator.py
@@ -38,6 +38,9 @@ def get_sources():
38
39
@staticmethod
40
def search_packages(paths):
41
+ # Resolve symlinks before calling dpkg-query -S increments the number of files found
42
+ paths = [os.path.realpath(path) for path in paths]
43
+
44
dpkg_query = DpkgQuery()
45
packages, missing = dpkg_query.search(paths)
46
return packages, missing
0 commit comments