⛩️ Powerful yet Minimal Nix Dependency Manager
flake flakes home-manager nixos go nix dependency dependencies
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(yae): remove remote tag restriction

Fuwn 9faaf211 ea99abe0

+1 -1
+1 -1
yae.go
··· 280 280 func fetchLatestGitTag(source Source, show bool) (string, error) { 281 281 if source.Type == "git" { 282 282 repository := "https://github.com/" + strings.Split(source.URL, "/")[3] + "/" + strings.Split(source.URL, "/")[4] 283 - remotes, err := command("bash", show, "-c", fmt.Sprintf("git ls-remote --tags %s | awk -F'/' '{print $NF}' | sort -V", repository)) 283 + remotes, err := command("bash", show, "-c", fmt.Sprintf("git ls-remote %s | awk -F'/' '{print $NF}' | sort -V", repository)) 284 284 285 285 if err != nil { 286 286 return "", err