From 2814adcb7c13a26f42c21d485ed10b06c02a7c61 Mon Sep 17 00:00:00 2001 From: Max Erenberg <> Date: Fri, 10 Sep 2021 18:45:53 -0400 Subject: [PATCH] don't setup auth on coffee in CI --- .drone/coffee-setup.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.drone/coffee-setup.sh b/.drone/coffee-setup.sh index ac8822a..454fc2c 100755 --- a/.drone/coffee-setup.sh +++ b/.drone/coffee-setup.sh @@ -47,7 +47,9 @@ GRANT ALL ON SCHEMA public TO postgres; EOF" postgres apt install -y netcat-openbsd -auth_setup coffee +if [ -z "$CI" ]; then + auth_setup coffee +fi # sync with phosphoric-acid nc -l 0.0.0.0 9000