Skip to content

Commit 0a1bcfb

Browse files
committed
fix ArchiveURL to comply with ReleaseTools documentation
1 parent 6da0edd commit 0a1bcfb

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

PackageInfo.g

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,10 @@ PackageWWWHome := Concatenation( "https://homalg-project.github.io/", ~.PackageN
4343
README_URL := Concatenation( ~.PackageWWWHome, "/README.md" ),
4444
PackageInfoURL := Concatenation( ~.PackageWWWHome, "/PackageInfo.g" ),
4545
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
46-
ArchiveURL := Concatenation( ~.SourceRepository.URL, "/archive/", ~.Version ),
47-
ArchiveFormats := ".tar.gz",
46+
ArchiveURL := Concatenation( ~.SourceRepository.URL,
47+
"/releases/download/v", ~.Version,
48+
"/", ~.PackageName, "-", ~.Version ),
49+
ArchiveFormats := ".tar.gz",
4850

4951
## Status information. Currently the following cases are recognized:
5052
## "accepted" for successfully refereed packages

0 commit comments

Comments
 (0)