mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-21 23:35:09 +00:00
Merge branch 'hotfix/dbench_fail'
This commit is contained in:
commit
e3ca8fdb81
1 changed files with 2 additions and 2 deletions
4
dbench
4
dbench
|
|
@ -46,7 +46,7 @@ cmd=0
|
||||||
|
|
||||||
positional=()
|
positional=()
|
||||||
|
|
||||||
if [[ $# -gt 0 ]]; then
|
if [ $# == 0 ]; then
|
||||||
docker exec -it frappe bash
|
docker exec -it frappe bash
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
@ -174,7 +174,7 @@ if [ $add == 1 ]; then
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if $*; then
|
if "$*"; then
|
||||||
echo "Incorrect option $*, please make sure you are entering the correct commands"
|
echo "Incorrect option $*, please make sure you are entering the correct commands"
|
||||||
usage
|
usage
|
||||||
exit 1
|
exit 1
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue