From 960bab4dee62067dcec983f5b3fb2a15f1bad6fd Mon Sep 17 00:00:00 2001 From: Emiliano Vavassori Date: Sat, 26 Mar 2022 02:45:01 +0100 Subject: [PATCH] Expliciting which file is checking out. --- loaih/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/loaih/__init__.py b/loaih/__init__.py index 7519b15..a00384f 100644 --- a/loaih/__init__.py +++ b/loaih/__init__.py @@ -77,6 +77,7 @@ class Build(object): for arch in self.arch: # For generalized builds, we need to check if there are .ver file # and it contains the specific version found. + print("Debug: searching for {file}".format(file = self.genappimagefilename[arch] . 'ver')) res = subprocess.run("find {path} -name {appimage}'".format( path = self.storage_path, appimage = self.genappimagefilename[arch] + '.ver' @@ -87,6 +88,7 @@ class Build(object): if self.version in open(file, 'r').read(): self.built = True + print("Debug: searching for {file}".format(file = self.appimagefilename[arch])) res = subprocess.run("find {path} -name '{appimage}'".format( path = self.storage_path, appimage = self.appimagefilename[arch]