Skip to content

Commit d3a5e64

Browse files
committed
home/hero.html: fix download link
Prior to v2.5.0, Git LFS named packaged release artifacts as: git-lfs-darwin-amd64-2.4.0.tar.gz and etc., for combinations of OS, architecture, version, and archival format. In v2.5.0, we began naming those same release artifacts as: git-lfs-darwin-amd64-v2.5.0.tar.gz Noting that there is now a 'v' prefix for the version number. In lieu of changing this back to the sans-'v' format, let's keep this and continue to name versions as-is from here going forward. This will help alleviate some whiplash experienced by packaging maintainers who have updated scripts to account for this new name, and it will be easier to maintain in Git LFS's somewhat-complicated Makefile. So, given that this change is here to stay (and we only ever increase the version number ;-) ), let's update the link on the website to download the appropriate thing, and not 404.
1 parent b1f81f4 commit d3a5e64

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

_includes/home/hero.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ <h1 class="page-heading">An open source Git extension for versioning large files
99
<div class="js-download">
1010
<a class="button primary-cta js-os-data" data-ga-params="download,button" data-os-attr="href"
1111
href="https://github.com/git-lfs/git-lfs/releases/latest"
12-
data-os-mac="https://github.com/git-lfs/git-lfs/releases/download/v{{site.git-lfs-release}}/git-lfs-darwin-amd64-{{site.git-lfs-release}}.tar.gz"
13-
data-os-windows="https://github.com/git-lfs/git-lfs/releases/download/v{{site.git-lfs-release}}/git-lfs-windows-{{site.git-lfs-release}}.exe">
12+
data-os-mac="https://github.com/git-lfs/git-lfs/releases/download/v{{site.git-lfs-release}}/git-lfs-darwin-amd64-v{{site.git-lfs-release}}.tar.gz"
13+
data-os-windows="https://github.com/git-lfs/git-lfs/releases/download/v{{site.git-lfs-release}}/git-lfs-windows-v{{site.git-lfs-release}}.exe">
1414
<span class="octicon octicon-cloud-download"></span>
1515
Download <span class="download-details">v{{site.git-lfs-release}}<span class="js-os-data" data-os-attr="text" data-os-mac=" (Mac)" data-os-Windows=" (Windows)"><span></span>
1616
</a>
1717
</div>
1818
<div class="js-linux visually-hidden">
1919
<a href="https://packagecloud.io/github/git-lfs/install" class="button primary-cta js-os-data" data-ga-params="download,packagecloud"><span class="octicon octicon-cloud-download"></span> Install <span class="download-details">v{{site.git-lfs-release}} via PackageCloud (Linux)</span></a>
20-
<p class="secondary-download">or <a href="https://github.com/git-lfs/git-lfs/releases/download/v{{site.git-lfs-release}}/git-lfs-linux-amd64-{{site.git-lfs-release}}.tar.gz" data-ga-params="download,button">Download v{{site.git-lfs-release}} (Linux)</a></p>
20+
<p class="secondary-download">or <a href="https://github.com/git-lfs/git-lfs/releases/download/v{{site.git-lfs-release}}/git-lfs-linux-amd64-v{{site.git-lfs-release}}.tar.gz" data-ga-params="download,button">Download v{{site.git-lfs-release}} (Linux)</a></p>
2121
</div>
2222
<div class="js-mac visually-hidden">
2323
<p class="secondary-download">

0 commit comments

Comments
 (0)