As the easyinstall folder was moved to contrib, a few things needed to be changed

This commit is contained in:
Papa Dragon 2022-12-27 01:03:15 +01:00
parent 749f5a74f2
commit 281400bb26
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ This first creates the directory where your web server will find the install fol
This will download all the software you need in /var/www/mywebsite. You can replace "mywebsite" with any name you like (which you'll have to do if you plan to have more than one website running on your system)
cd website/.easyinstall
cd website/contrib/easyinstall
This brings you to the subfolder where the tools are available, i.e. the setup script.

View file

@ -706,7 +706,7 @@ check_sanity
repo_name
print_info "We're installing a website using the $repository repository"
install_path="$(dirname "$(pwd)")"
install_path="$(dirname $(dirname "$(pwd)"))"
install_folder="$(basename $install_path)"
domain_regex="^([a-zA-Z0-9][a-zA-Z0-9-]{0,61}[a-zA-Z0-9]\.)+[a-zA-Z]{2,}$"
local_regex="^([a-zA-Z0-9]){2,25}$"