diff --git a/loaih/__init__.py b/loaih/__init__.py index dbfbd82..f5048b4 100644 --- a/loaih/__init__.py +++ b/loaih/__init__.py @@ -110,7 +110,7 @@ class Build(object): for arch in self.arch: print(f"Searching for {self.appimagefilename[arch]}") - res = subprocess.run(shlex.split(f"find {self.full_path} -name {self.appimagefilename[arch]}'"), capture_output=True, env={ "LC_ALL": "C" }, text=True, encoding='utf-8') + res = subprocess.run(shlex.split(f"find {self.full_path} -name {self.appimagefilename[arch]}"), capture_output=True, env={ "LC_ALL": "C" }, text=True, encoding='utf-8') if "No such file or directory" in res.stderr: # Folder is not existent: so the version was not built