Skip to content

Commit

Permalink
Fix move to .txz for linux binaries causing links on the previous rel…
Browse files Browse the repository at this point in the history
…eases page for linux binaries not working
  • Loading branch information
kovidgoyal committed Aug 22, 2014
1 parent 14bcb87 commit b657997
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup/hosting.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ def generate_index(): # {{{
if osx:
body.append('<dt>Apple Mac</dt><dd><a href="{0}" title="{1}">{1}</a></dd>'.format(
osx[0], 'OS X Disk Image (.dmg)'))
linux = [x for x in files if x.endswith('.txz')]
linux = [x for x in files if x.endswith('.txz') or x.endswith('tar.bz2')]
if linux:
linux = ['<li><a href="{0}" title="{1}">{1}</a></li>'.format(
x, 'Linux 64-bit binary' if 'x86_64' in x else 'Linux 32-bit binary')
Expand Down

0 comments on commit b657997

Please sign in to comment.