diff --git a/loaih/build.py b/loaih/build.py index a0f021d..356699d 100644 --- a/loaih/build.py +++ b/loaih/build.py @@ -409,7 +409,7 @@ class Build(loaih.RemoteBuild): def __create_checksum__(self, file): """Internal function to create checksum file.""" - checksum = subprocess.run(shlex.split(f"md5sum {file}"), shell=True, + checksum = subprocess.run(f"md5sum {file}", shell=True, capture_output=True, text=True, encoding='utf-8', check=True, cwd=self.appnamedir)