fixing missing var tags

This commit is contained in:
chabad360 2018-08-02 16:45:07 -07:00
parent 949a505100
commit 4acb2cb6ca

12
dbench
View file

@ -72,7 +72,7 @@ while true; do
;;
--init)
init=1
site=$optopt
site="$optopt"
;;
--)
break
@ -81,9 +81,9 @@ while true; do
shift
done
if setup; then
if $setup; then
docker-compose build
if d; then
if $d; then
docker-compose -d
else
docker-compose
@ -91,9 +91,9 @@ if setup; then
exit 0
fi
if init; then
if ! site; then
if $init; then
if ! $site; then
site="site1.local"
fi
frappe_installer site
frappe_installer $site
fi