mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-17 13:55:08 +00:00
fixing missing var tags
This commit is contained in:
parent
949a505100
commit
4acb2cb6ca
1 changed files with 6 additions and 6 deletions
12
dbench
12
dbench
|
|
@ -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
|
||||
Loading…
Reference in a new issue