Procházet zdrojové kódy

Fix typo in release script (#14920)

* Fix typo in release script

* Changelog
tags/v1.77.0rc1
David Robertson před 1 rokem
committed by GitHub
rodič
revize
dc901a885f
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4AEE18F83AFDEB23
2 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. +1
    -0
      changelog.d/14920.misc
  2. +1
    -1
      scripts-dev/release.py

+ 1
- 0
changelog.d/14920.misc Zobrazit soubor

@@ -0,0 +1 @@
Fix typo in release script.

+ 1
- 1
scripts-dev/release.py Zobrazit soubor

@@ -438,7 +438,7 @@ def _upload(gh_token: Optional[str]) -> None:
repo = get_repo_and_check_clean_checkout()
tag = repo.tag(f"refs/tags/{tag_name}")
if repo.head.commit != tag.commit:
click.echo("Tag {tag_name} (tag.commit) is not currently checked out!")
click.echo(f"Tag {tag_name} ({tag.commit}) is not currently checked out!")
click.get_current_context().abort()

# Query all the assets corresponding to this release.


Načítá se…
Zrušit
Uložit