nightly: fix bug that clones nightly repo to wrong location

bug introduced in ce018158ee from !1563
This commit is contained in:
Hans-Christoph Steiner 2025-06-24 10:53:59 +02:00
parent e177520379
commit d71fba164c

View file

@ -396,7 +396,7 @@ def main():
git_mirror_repodir = os.path.join(git_mirror_fdroiddir, 'repo')
git_mirror_metadatadir = os.path.join(git_mirror_fdroiddir, 'metadata')
if not os.path.isdir(git_mirror_repodir):
clone_git_repo(clone_url, git_mirror_repodir)
clone_git_repo(clone_url, git_mirror_path)
if not os.path.isdir(git_mirror_repodir):
os.makedirs(git_mirror_repodir, mode=0o755)
if os.path.exists('LICENSE'):