We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 77d1f65 + 401bfa8 commit 253bca0Copy full SHA for 253bca0
1 file changed
install_libpng_wasi.sh
@@ -27,7 +27,9 @@ if [ -f "$ZLIB_TARBALL" ]; then
27
echo "Tarball $ZLIB_TARBALL already exists. Skipping re-download."
28
else
29
echo "Tarball $ZLIB_TARBALL does not exist. Downloading the tarball."
30
- wget https://zlib.net/$ZLIB.tar.gz
+ # zlib.net only serves the current release at the root; older versions are
31
+ # permanently archived under /fossils/. (Was https://zlib.net/$ZLIB.tar.gz, now 404.)
32
+ wget https://zlib.net/fossils/$ZLIB.tar.gz
33
fi
34
35
# Check if the directory already exists
0 commit comments