fix typos

This commit is contained in:
AJ ONeal 2019-06-01 05:14:57 +00:00
parent d281754c05
commit ba73451211
1 changed files with 4 additions and 4 deletions

View File

@ -11,11 +11,11 @@ while [ -z "${my_site:-}" ]; do
done
my_repo_tmp=$(eval echo "~$my_user")
read -p "Repository [$my_repo_tmp/${my_site}.git]: " my_repos
: ${my_repos:="$my_repo_tmp/${my_site}.git"}
read -p "Repository [$my_repo_tmp/${my_site}.git]: " my_repo
: ${my_repo:="$my_repo_tmp/${my_site}.git"}
read -p "Deploy to [/srv/www/beta.therootcompany.com/$my_site]: " my_deploy
: ${my_deploy:="/srv/www/beta.therootcompany.com/$my_site"}
read -p "Deploy to [/srv/www/$my_site]: " my_deploy
: ${my_deploy:="/srv/www/$my_site"}
my_pretty="x"
while [ "y" != "$my_pretty" ] && [ "n" != "$my_pretty" ]; do