Fix checksum che torna valore non valido.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
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
|
||||
|
||||
|
Reference in New Issue
Block a user