Skip to content

Commit

Permalink
releng/models.py: update bootstrap tarball extension
Browse files Browse the repository at this point in the history
archiso v77 changed the bootstrap tarball compression from gzip to zstd.
See https://gitlab.archlinux.org/archlinux/archiso/-/merge_requests/373

Related to https://gitlab.archlinux.org/archlinux/archiso/-/issues/130
  • Loading branch information
nl6720 authored and jelly committed May 2, 2024
1 parent 8679a0c commit e7b46dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion releng/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def iso_url(self):
return "iso/%s/archlinux-%s-x86_64.iso" % (self.version, self.version)

def tarball_url(self):
return "iso/%s/archlinux-bootstrap-%s-x86_64.tar.gz" % (self.version, self.version)
return "iso/%s/archlinux-bootstrap-%s-x86_64.tar.zst" % (self.version, self.version)

def dir_url(self):
return "iso/%s" % (self.version)
Expand Down

0 comments on commit e7b46dc

Please sign in to comment.