We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5ad125 commit 42111f1Copy full SHA for 42111f1
setup.cfg
@@ -1,3 +1,6 @@
1
+[flake8]
2
+exclude = squashfs-root
3
+
4
[coverage:run]
5
source = beeref
6
tools/build_appimage.py
@@ -10,7 +10,6 @@
10
11
12
import argparse
13
-import glob
14
import json
15
import logging
16
import os
tools/find_linux_libs.py
@@ -108,11 +108,11 @@ def iter_lsofoutput(output):
108
109
110
for lib in iter_lsofoutput(output):
111
- links = what_links_to(path)
+ links = what_links_to(lib)
112
if len(links) == 1:
113
lib = links[0]
114
else:
115
- logger.warning(f'Double check: {path} {links}')
+ logger.warning(f'Double check: {lib} {links}')
116
117
if lib in known_libs:
118
logger.debug(f'Found known lib: {lib}')
0 commit comments