1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-21 04:10:37 +02:00

fix(deploy): remove unnecessary additional initial commit

and fix the test error: https://gitlab.com/proletarius101/fdroidserver/-/jobs/6997355250#L6978
This commit is contained in:
proletarius101 2024-06-02 21:13:37 +08:00
parent d619fbff26
commit e8e8f8b9f0
No known key found for this signature in database

View File

@ -690,11 +690,6 @@ def update_servergitmirrors(servergitmirrors, repo_section):
repo = git.Repo.init(git_mirror_path, initial_branch=GIT_BRANCH)
initial_ref = repo.head.ref
# An initial commit of the git tree is required be for other operations
print("repo.index.entries:", len(repo.index.entries))
if len(repo.index.entries) == 0:
repo.index.commit('Initial commit')
enabled_remotes = []
for d in servergitmirrors:
upload_to_servergitmirror(mirror_config=d,