i am terrible

This commit is contained in:
burnettk 2023-03-29 14:18:37 -04:00
parent b7d154ff02
commit 82ec34e00b
1 changed files with 2 additions and 2 deletions

View File

@ -44,8 +44,8 @@ if [[ "${1:-}" == "clean" ]]; then
# TODO: check to see if the db already exists and we can connect to it. also actually clean it up.
# start postgres in background with one db
if [[ "${SPIFFWORKFLOW_BACKEND_DATABASE_TYPE:-}" == "postgres" ]]; then
container_name = "postgres-spiff"
container_regex = "^postgres-spiff$"
container_name="postgres-spiff"
container_regex="^postgres-spiff$"
if [[ -n "$(docker ps -qa -f name=$container_regex)" ]]; then
echo ":: Found postgres container - $container_name"
if [[ -n "$(docker ps -q -f name=$container_regex)" ]]; then