mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-21 15:25:09 +00:00
more bugfix
This commit is contained in:
parent
a66099dda0
commit
82c839b14a
1 changed files with 3 additions and 3 deletions
6
dbench
6
dbench
|
|
@ -28,12 +28,12 @@ frappe_installer () {
|
||||||
if [[ $# -eq 0 ]]; then
|
if [[ $# -eq 0 ]]; then
|
||||||
docker exec -it frappe bash
|
docker exec -it frappe bash
|
||||||
|
|
||||||
elif [ $1 == 'init' ] && [ $2 == 'e' ]
|
elif [[ $1 == 'init' && $2 == 'e' ]]
|
||||||
then
|
then
|
||||||
frappe_installer
|
frappe_installer
|
||||||
echo "installing erpnext"
|
echo "installing erpnext"
|
||||||
docker exec -it frappe bash -c "bench get-app erpnext" | echo
|
docker exec -it frappe bash -c "bench get-app erpnext"
|
||||||
docker exec -it frappe bash -c "bench --site site1.local install-app erpnext" | echo
|
docker exec -it frappe bash -c "bench --site site1.local install-app erpnext"
|
||||||
echo "finished"
|
echo "finished"
|
||||||
|
|
||||||
elif [ $1 == 'init' ]
|
elif [ $1 == 'init' ]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue