Move -x down to eliminate pointless noise

This commit is contained in:
Joel Bradshaw 2020-11-27 17:39:15 -08:00
parent 3cb28273c4
commit f86140c7e4

7
bw-dev
View file

@ -12,9 +12,6 @@ trap showerr EXIT
source .env
trap - EXIT
# show commands as they're executed
set -x
function clean {
docker-compose stop
docker-compose rm -f
@ -40,6 +37,10 @@ function initdb {
CMD=$1
shift
# show commands as they're executed
set -x
case "$CMD" in
up)
docker-compose up --build