fix: gen-migrations workflow
Some checks failed
gen-migrations / gen-migrations (push) Failing after 17s

This commit is contained in:
Orion Kindel
2023-07-19 23:36:35 -05:00
parent 994fa9d093
commit 6b1557ab76

View File

@@ -1,6 +1,6 @@
#! /bin/bash
set -e
set -xe
source ./scripts/common.sh
source ./scripts/env.sh ./.env.schema
@@ -19,7 +19,6 @@ db() {
}
docker compose rm -vsf "$base_or_head"
until ! psql $(db postgres) -c "select 1" &>/dev/null; do true; done;
isready() {
until psql $(db postgres) -c "select 1" &>/dev/null; do true; done;