From 7bfcb21ba631e96fdf98b6280dfa54e22ea2b99f Mon Sep 17 00:00:00 2001 From: proletarius101 Date: Sat, 6 Apr 2024 22:30:50 +0800 Subject: [PATCH] test --- fdroidserver/deploy.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/fdroidserver/deploy.py b/fdroidserver/deploy.py index 08c4f047..ba219a5f 100644 --- a/fdroidserver/deploy.py +++ b/fdroidserver/deploy.py @@ -709,6 +709,9 @@ def update_servergitmirrors(servergitmirrors, repo_section): if not branch_name in repo.heads: repo.create_head(branch_name, initial_branch_ref) repo.head.reference = repo.heads[branch_name] + + # test + print(repo.git.status()) remote_url = d['url'] name = REMOTE_HOSTNAME_REGEX.sub(r'\1', remote_url) @@ -723,6 +726,9 @@ def update_servergitmirrors(servergitmirrors, repo_section): logging.info('Mirroring to: ' + remote_url) if index_only: + # test + print(glob.glob('.' + '/**/*', recursive=True)) + logging.debug('Adding index files to git mirror') repo.index.add(_get_index_file_paths(repo_section)) else: