Skip to content

Commit

Permalink
Fix zlib URL
Browse files Browse the repository at this point in the history
  • Loading branch information
reznikmm committed Mar 13, 2024
1 parent d632312 commit 757b344
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions specs/zlib.anod
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import os
class ZLib(spec("common")):
@property
def version(self):
return "1.3"
return "1.3.1"

@property
def tarball(self):
Expand All @@ -20,7 +20,7 @@ class ZLib(spec("common")):
def source_pkg_build(self):
return [
self.HTTPSSourceBuilder(
name=self.tarball, url="https://zlib.net/current/%s" % self.tarball
name=self.tarball, url="https://zlib.net/%s" % self.tarball
),
]

Expand Down

0 comments on commit 757b344

Please sign in to comment.