Skip to content

Commit

Permalink
Merge pull request #1246 from camptocamp/backport/1245-to-master
Browse files Browse the repository at this point in the history
[Backport master] Fix tags for feature branch
  • Loading branch information
sbrunner authored Sep 13, 2023
2 parents 9aee4ba + aa3bb60 commit e8ce972
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion c2cciutils/scripts/publish.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def main() -> None:
break

alt_tags = set()
if "Alternate Tag" in security.headers:
if "Alternate Tag" in security.headers and row_index >= 0:
tag_index = security.headers.index("Alternate Tag")
alt_tags = {t.strip() for t in security.data[row_index][tag_index].split(",")}
if security.data[-1][version_index] == version:
Expand Down

0 comments on commit e8ce972

Please sign in to comment.