mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-21 15:25:09 +00:00
Found the build issue, and now its gone
This commit is contained in:
parent
37765cfc12
commit
17c7b662a7
1 changed files with 2 additions and 1 deletions
3
dbench
3
dbench
|
|
@ -28,11 +28,12 @@ function frappe_installer {
|
||||||
}
|
}
|
||||||
|
|
||||||
if [[ $# -eq 0 ]]; then
|
if [[ $# -eq 0 ]]; then
|
||||||
|
echo "$@"
|
||||||
docker exec -it frappe bash 'bench $@'
|
docker exec -it frappe bash 'bench $@'
|
||||||
|
|
||||||
elif [ $1 == '--init' ]; then
|
elif [ $1 == '--init' ]; then
|
||||||
site=$2
|
site=$2
|
||||||
if ! $2; then set -- "${@:1}" "site1.local"; fi
|
if ! $2; then set -- "${@:1}" "site1.local" && site=$2; fi
|
||||||
if ! $3; then set -- "${@:1:2}" "site1.local" && site=$3; fi
|
if ! $3; then set -- "${@:1:2}" "site1.local" && site=$3; fi
|
||||||
echo "$site"
|
echo "$site"
|
||||||
frappe_installer $site
|
frappe_installer $site
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue