Ristrutturazione codice di verifica.
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
8b5c87f801
commit
1f83db6105
@ -82,7 +82,16 @@ class Build(loaih.RemoteBuild):
|
||||
"""Calculate exclusions and other variables."""
|
||||
|
||||
print("--- Calculate Phase ---")
|
||||
|
||||
|
||||
# let's check here if we are on a remote repo or local.
|
||||
if self.storage_path.startswith("http"):
|
||||
# Final repository is remote
|
||||
self.repo_type = 'remote'
|
||||
print("Repo is remote.")
|
||||
else:
|
||||
self.repo_type = 'local'
|
||||
print("Repo is local.")
|
||||
|
||||
# AppName
|
||||
if self.query in { 'prerelease', 'daily' }:
|
||||
self.appname = 'LibreOfficeDev'
|
||||
@ -149,13 +158,6 @@ class Build(loaih.RemoteBuild):
|
||||
|
||||
print("--- Check Phase ---")
|
||||
|
||||
# let's check here if we are on a remote repo or local.
|
||||
if self.storage_path.startswith("http"):
|
||||
# Final repository is remote
|
||||
self.repo_type = 'remote'
|
||||
else:
|
||||
self.repo_type = 'local'
|
||||
|
||||
if len(self.appimagefilename) != 2:
|
||||
self.calculate()
|
||||
|
||||
|
Reference in New Issue
Block a user