This commit is contained in:
parent
3aab2626ed
commit
f6bcf610ba
@ -387,8 +387,10 @@ class Build(loaih.RemoteBuild):
|
|||||||
|
|
||||||
def __create_checksum__(self, file):
|
def __create_checksum__(self, file):
|
||||||
"""Internal function to create checksum file."""
|
"""Internal function to create checksum file."""
|
||||||
checksum = subprocess.run(f"md5sum {file}", shell=True,
|
checksum = subprocess.run(
|
||||||
capture_output=True, text=True, encoding='utf-8', check=True)
|
f"md5sum {file}", shell=True, cwd=self.appnamedir,
|
||||||
|
capture_output=True, text=True, encoding='utf-8', check=True
|
||||||
|
)
|
||||||
if checksum.stdout:
|
if checksum.stdout:
|
||||||
with open(f"{file}.md5", 'w', encoding='utf-8') as csfile:
|
with open(f"{file}.md5", 'w', encoding='utf-8') as csfile:
|
||||||
csfile.write(checksum.stdout)
|
csfile.write(checksum.stdout)
|
||||||
|
Reference in New Issue
Block a user