From f24b009726ab40cc5d55092310b1741a8fe59782 Mon Sep 17 00:00:00 2001 From: Marwolf Date: Sat, 25 Aug 2018 11:40:41 -0400 Subject: [PATCH] Typo fix --- Linux_Installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Linux_Installer.sh b/Linux_Installer.sh index fb07f6c..be681fd 100755 --- a/Linux_Installer.sh +++ b/Linux_Installer.sh @@ -235,7 +235,7 @@ elif [ "$choice" == "2" ]; then read -s loopmode # Automated edits of the .env file - sudo sed -i 's/URL=http:\/\/localhost\/blog/URL=http:\/\/'"$domai"n'\/blog/g' .env | tee -a installer.log &>/dev/null + sudo sed -i 's/URL=http:\/\/localhost\/blog/URL=http:\/\/'"$domain"'\/blog/g' .env | tee -a installer.log &>/dev/null sudo sed -i 's/NGINX_HOST=localhost/NGINX_HOST='"$domain"'/g' .env | tee -a installer.log &>/dev/null sudo sed -i 's/MARIADB_ROOT_USER=root/MARIADB_ROOT_USER='"$dbuser"'/g' .env | tee -a installer.log &>/dev/null sudo sed -i 's/MARIADB_ROOT_PASSWORD=root/MARIADB_ROOT_PASSWORD='"$dbpass"'/g' .env | tee -a installer.log &>/dev/null