From 9fa6cece9d10e54b2a9311a77d7154990a8e2486 Mon Sep 17 00:00:00 2001 From: Elliott Shugerman Date: Sun, 25 Sep 2022 13:28:13 -0400 Subject: [PATCH] remove weird bit from POSTGRES_PASSWORD error message in restore.sh --- src/restore.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/restore.sh b/src/restore.sh index 9762afe..23b1e92 100644 --- a/src/restore.sh +++ b/src/restore.sh @@ -30,8 +30,7 @@ if [ -z "$POSTGRES_USER" ]; then fi if [ -z "$POSTGRES_PASSWORD" ]; then - echo "You need to set the POSTGRES_PASSWORD environment variable" \ - "or link to a container named POSTGRES." + echo "You need to set the POSTGRES_PASSWORD environment variable." exit 1 fi