1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/wordpress_ynh.git synced 2024-09-03 20:36:10 +02:00

Fix auto-updater

This commit is contained in:
tituspijean 2022-10-24 23:30:09 +02:00 committed by GitHub
parent 61f089118e
commit e98eb4565c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -105,7 +105,7 @@ def main():
return return
# Proceed only if a PR for this new version does not already exist # Proceed only if a PR for this new version does not already exist
branch = f"ci-auto-update-v${latest_version}" branch = f"ci-auto-update-v{latest_version}"
command = ["git", "ls-remote", "--exit-code", "-h", repo, branch] command = ["git", "ls-remote", "--exit-code", "-h", repo, branch]
if run(command, stderr=PIPE, stdout=PIPE, check=False).returncode == 0: if run(command, stderr=PIPE, stdout=PIPE, check=False).returncode == 0:
logging.warning("A branch already exists for this update") logging.warning("A branch already exists for this update")