Skip to content

Commit

Permalink
fix: change master to main
Browse files Browse the repository at this point in the history
Change the branch name in the build process
  • Loading branch information
CMiksche committed Jan 31, 2022
1 parent ccb3e05 commit bdef0b6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gitea_auto_update/lib/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
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')
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -13,7 +13,7 @@

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",
Expand Down

0 comments on commit bdef0b6

Please sign in to comment.