bugfix: Create HTML directory if it does not exist

mirror-tarballs script breaks on a fresh clone of the repo due to the missing html dir. Simply creating this directory allows the script to complete successfully.
pull/1080/head
Nicholas Omer Chiasson 2 months ago committed by nchiasson
parent b1e4118185
commit 7fe4146fa9

@ -576,6 +576,8 @@ if [ "$answer" = "Y" ]; then
patch -p1 < $root/patches/nginx/$main_ver/nginx-$main_ver-quic_ssl_lua_yield.patch || exit 1
fi
mkdir -p html || exit 1
cp $root/html/index.html html/ || exit 1
cp $root/html/50x.html html/ || exit 1

Loading…
Cancel
Save