From 07a895c86c3543de036ee233b703dd2b65d27412 Mon Sep 17 00:00:00 2001 From: Emiliano Vavassori Date: Thu, 5 Jan 2023 01:56:33 +0100 Subject: [PATCH] Fix checksum che torna valore non valido. --- loaih/build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/loaih/build.py b/loaih/build.py index b42acd3..8fb99a9 100644 --- a/loaih/build.py +++ b/loaih/build.py @@ -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