Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion install_libpng_wasi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ if [ -f "$ZLIB_TARBALL" ]; then
echo "Tarball $ZLIB_TARBALL already exists. Skipping re-download."
else
echo "Tarball $ZLIB_TARBALL does not exist. Downloading the tarball."
wget https://zlib.net/$ZLIB.tar.gz
# zlib.net only serves the current release at the root; older versions are
# permanently archived under /fossils/. (Was https://zlib.net/$ZLIB.tar.gz, now 404.)
wget https://zlib.net/fossils/$ZLIB.tar.gz
fi

# Check if the directory already exists
Expand Down