Fix checksum che torna valore non valido.
This commit is contained in:
parent
05533bf5e2
commit
07a895c86c
|
@ -311,7 +311,7 @@ class Build(loaih.RemoteBuild):
|
|||
def checksums(self):
|
||||
"""Create checksums of the built versions."""
|
||||
# Skip checksum if initally the build was already found in the storage directory
|
||||
if all(self.built.values()):
|
||||
if all(self.built[arch] for arch in self.arch):
|
||||
return
|
||||
|
||||
os.chdir(self.appnamedir)
|
||||
|
@ -330,7 +330,7 @@ class Build(loaih.RemoteBuild):
|
|||
|
||||
def publish(self):
|
||||
"""Moves built versions to definitive storage."""
|
||||
if all(self.built.values()):
|
||||
if all(self.built[arch] for arch in self.arch):
|
||||
# All files are already present in the full_path
|
||||
return
|
||||
|
||||
|
|
Loading…
Reference in New Issue