From d619fbff26a56d403e14a4505d0d0b1788f9e7e5 Mon Sep 17 00:00:00 2001 From: proletarius101 Date: Sun, 2 Jun 2024 19:39:05 +0800 Subject: [PATCH] chore(deploy): list all files in the local git repo --- fdroidserver/deploy.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)