From bdef0b69870e3acdf9a436e9d98e5ada287048c2 Mon Sep 17 00:00:00 2001 From: Christoph Miksche Date: Mon, 31 Jan 2022 11:59:33 +0100 Subject: [PATCH] fix: change master to main Change the branch name in the build process --- gitea_auto_update/lib/build.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gitea_auto_update/lib/build.py b/gitea_auto_update/lib/build.py index 1d1c9c3..6b74a2b 100644 --- a/gitea_auto_update/lib/build.py +++ b/gitea_auto_update/lib/build.py @@ -12,7 +12,7 @@ import os def build_from_source(tag, gt_file, source_dir): """Function to build the new version from source""" os.chdir(source_dir) - os.system("git checkout master") + os.system("git checkout main") os.system("git pull") os.system("git checkout " + tag) os.system('TAGS="bindata sqlite sqlite_unlock_notify" make generate build') diff --git a/setup.py b/setup.py index 139fd22..689f846 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ ''' Gitea Auto Updater -Copyright 2018, 2019, 2020 The Gitea-Auto-Update Authors +Copyright 2018, 2019, 2020, 2021, 2022 The Gitea-Auto-Update Authors All rights reserved. License: GNU General Public License @@ -13,7 +13,7 @@ with open("README.md", "r") as fh: setuptools.setup( name='gitea_auto_update', - version='2.0.9', + version='2.0.10', description='A script which can update gitea to a new version.', long_description=LONG_DESCRIPTION, long_description_content_type="text/markdown",