mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-22 07:45:09 +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)
|
||||||
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
|
||||||
Loading…
Reference in a new issue