mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-12-27 20:09:39 -08:00
fix: typo in numerous version url templates
This commit is contained in:
parent
5a4be2b235
commit
db52fcd198
|
@ -29,7 +29,7 @@ func (d *Dotnet) Init(props properties.Properties, env environment.Environment)
|
|||
`(?:-(?P<prerelease>(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+(?P<buildmetadata>[0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?))`,
|
||||
},
|
||||
},
|
||||
versionURLTemplate: "https://github.com/dotnet/core/blob/master/release-notes/{{ .Major }}.{{ .Minor }}/{{ .Major }}.{{ .Minor }}.{{ .Patch }}/{{ .Major }}.{{ .Minor }}.{{ .Patch }}.md)", // nolint: lll
|
||||
versionURLTemplate: "https://github.com/dotnet/core/blob/master/release-notes/{{ .Major }}.{{ .Minor }}/{{ .Major }}.{{ .Minor }}.{{ .Patch }}/{{ .Major }}.{{ .Minor }}.{{ .Patch }}.md", // nolint: lll
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ func (g *Golang) Init(props properties.Properties, env environment.Environment)
|
|||
regex: `(?:go(?P<version>((?P<major>[0-9]+).(?P<minor>[0-9]+)(.(?P<patch>[0-9]+))?)))`,
|
||||
},
|
||||
},
|
||||
versionURLTemplate: "https://golang.org/doc/go{{ .Major }}.{{ .Minor }})",
|
||||
versionURLTemplate: "https://golang.org/doc/go{{ .Major }}.{{ .Minor }}",
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ func (j *Julia) Init(props properties.Properties, env environment.Environment) {
|
|||
regex: `julia version (?P<version>((?P<major>[0-9]+).(?P<minor>[0-9]+).(?P<patch>[0-9]+)))`,
|
||||
},
|
||||
},
|
||||
versionURLTemplate: "https://github.com/JuliaLang/julia/releases/tag/v{{ .Full }})",
|
||||
versionURLTemplate: "https://github.com/JuliaLang/julia/releases/tag/v{{ .Full }}",
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ func (k *Kotlin) Init(props properties.Properties, env environment.Environment)
|
|||
regex: `Kotlin version (?P<version>((?P<major>[0-9]+).(?P<minor>[0-9]+).(?P<patch>[0-9]+)))`,
|
||||
},
|
||||
},
|
||||
versionURLTemplate: "https://github.com/JetBrains/kotlin/releases/tag/v{{ .Full }})",
|
||||
versionURLTemplate: "https://github.com/JetBrains/kotlin/releases/tag/v{{ .Full }}",
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue