1
0
mirror of https://github.com/CMiksche/gitea-auto-update synced 2025-12-10 07:57:23 +01:00

fix: change master to main

Change the branch name in the build process
This commit is contained in:
Christoph Miksche
2022-01-31 11:59:33 +01:00
parent ccb3e058ef
commit bdef0b6987
2 changed files with 3 additions and 3 deletions

View File

@@ -12,7 +12,7 @@ import os
def build_from_source(tag, gt_file, source_dir): def build_from_source(tag, gt_file, source_dir):
"""Function to build the new version from source""" """Function to build the new version from source"""
os.chdir(source_dir) os.chdir(source_dir)
os.system("git checkout master") os.system("git checkout main")
os.system("git pull") os.system("git pull")
os.system("git checkout " + tag) os.system("git checkout " + tag)
os.system('TAGS="bindata sqlite sqlite_unlock_notify" make generate build') os.system('TAGS="bindata sqlite sqlite_unlock_notify" make generate build')

View File

@@ -1,7 +1,7 @@
''' '''
Gitea Auto Updater 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. All rights reserved.
License: GNU General Public License License: GNU General Public License
@@ -13,7 +13,7 @@ with open("README.md", "r") as fh:
setuptools.setup( setuptools.setup(
name='gitea_auto_update', name='gitea_auto_update',
version='2.0.9', version='2.0.10',
description='A script which can update gitea to a new version.', description='A script which can update gitea to a new version.',
long_description=LONG_DESCRIPTION, long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",