From: Martin Liska Date: Fri, 7 Oct 2022 09:35:32 +0000 (+0200) Subject: contrib: remove extra fetch from git_update_version X-Git-Tag: basepoints/gcc-14~4053 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fce601fd07fd04f55c4e8260ec49012dea886b06;p=thirdparty%2Fgcc.git contrib: remove extra fetch from git_update_version Remove extra fetch call that didn't help with the issue we had (missing object). contrib/ChangeLog: * gcc-changelog/git_update_version.py: Remove extra fetch. --- diff --git a/contrib/gcc-changelog/git_update_version.py b/contrib/gcc-changelog/git_update_version.py index 36995d2520ba..074e717d6105 100755 --- a/contrib/gcc-changelog/git_update_version.py +++ b/contrib/gcc-changelog/git_update_version.py @@ -135,7 +135,7 @@ def update_current_branch(ref_name): repo.git.add(datestamp_path) if not args.current: repo.index.commit('Daily bump.') - origin.fetch() + logging.info('commit is done') if args.push: try: repo.git.push('origin', branch)