scripts/pluginupdate.py: use HEAD as default branch
Thus we always use the default branch. No need to special handle of `master`, `main`, `trunk` and etc.
This commit is contained in:
parent
ebb7f07eec
commit
aad1bda6f3
1 changed files with 1 additions and 1 deletions
|
@ -385,7 +385,7 @@ def check_results(
|
|||
sys.exit(1)
|
||||
|
||||
def parse_plugin_line(line: str) -> PluginDesc:
|
||||
branch = "master"
|
||||
branch = "HEAD"
|
||||
alias = None
|
||||
name, repo = line.split("/")
|
||||
if " as " in repo:
|
||||
|
|
Loading…
Reference in a new issue