diff options
author | Martin Liska <mliska@suse.cz> | 2021-06-11 10:13:54 +0200 |
---|---|---|
committer | Martin Liska <mliska@suse.cz> | 2021-06-11 10:13:54 +0200 |
commit | e01874cdae4bfdb1d5c5e25c54f14225c5895af3 (patch) | |
tree | 290d40e475353527d0aeef8b702075b08c46d79d /contrib | |
parent | 2f5ab546e2be8e42b00416b2e5860d04a881beab (diff) | |
download | gcc-e01874cdae4bfdb1d5c5e25c54f14225c5895af3.zip gcc-e01874cdae4bfdb1d5c5e25c54f14225c5895af3.tar.gz gcc-e01874cdae4bfdb1d5c5e25c54f14225c5895af3.tar.bz2 |
gcc-changelog: Ignore one more commit.
contrib/ChangeLog:
* gcc-changelog/git_update_version.py: Ignore commit that
violates rules and was somehow pushed.
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/gcc-changelog/git_update_version.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/gcc-changelog/git_update_version.py b/contrib/gcc-changelog/git_update_version.py index 0508f19..b97ca58 100755 --- a/contrib/gcc-changelog/git_update_version.py +++ b/contrib/gcc-changelog/git_update_version.py @@ -27,7 +27,9 @@ from git_repository import parse_git_revisions current_timestamp = datetime.datetime.now().strftime('%Y%m%d\n') # Skip the following commits, they cannot be correctly processed -IGNORED_COMMITS = ('c2be82058fb40f3ae891c68d185ff53e07f14f45') +IGNORED_COMMITS = ( + 'c2be82058fb40f3ae891c68d185ff53e07f14f45', + '04a040d907a83af54e0a98bdba5bfabc0ef4f700') def read_timestamp(path): |