diff --git a/fdroidserver/deploy.py b/fdroidserver/deploy.py index cdfa7222..9f827c3d 100644 --- a/fdroidserver/deploy.py +++ b/fdroidserver/deploy.py @@ -723,8 +723,9 @@ def upload_to_servergitmirror(mirror_config: Dict[str, str], progress: git.RemoteProgress) -> None: # Test print(f"mirror_config: {mirror_config}") + # List all files in the git repo print("files:") - print(glob.glob('.' + '/**/*', recursive=True)) + print(local_repo.git.ls_files()) index_only = mirror_config.get('index_only', False)