This commit is contained in:
Nick Leffler 2020-01-22 23:42:54 -05:00
parent 50ee05ea5c
commit 96786bcfa4

View File

@ -235,7 +235,7 @@ nginx-conf
ln -s ${siteFile} /etc/nginx/sites-enabled/
nginx -t
read -p "Would you like to reload nginx to take new changes?: [y/n]" yy
if [ $yy == "y" ]; then
if [ ${yy} == "y" ]; then
echo "reloading nginx"
systemctl reload nginx
fi