Skip to content

Commit 0446449

Browse files
committed
feat: warn if no dependencies are found
fix #74
1 parent 8973e28 commit 0446449

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

appimagebuilder/generator/app_runtime_analyser.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,12 @@ def run_app_analysis(self):
6767
self.runtime_libs = sorted(self.runtime_libs)
6868
self.runtime_data = sorted(self.runtime_data)
6969

70+
if not self.runtime_libs:
71+
logging.warning(
72+
"No dependencies were found, "
73+
"please make sure that all the required libraries are reachable."
74+
)
75+
7076
def _resolve_bin_interpreters(self):
7177
patch_elf = PatchElf()
7278
patch_elf.log_stderr = False

0 commit comments

Comments
 (0)