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