From 375bcf1675f54e9c09de3db34f78b4b66943d7f4 Mon Sep 17 00:00:00 2001 From: SouthpawKB <129619103+SouthpawKB@users.noreply.github.com> Date: Tue, 25 Feb 2025 16:26:10 -0500 Subject: [PATCH] DEV: Launcher Cleanup - Remove redundant word in error message (#944) --- launcher | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher b/launcher index db2b25c..f405524 100755 --- a/launcher +++ b/launcher @@ -491,7 +491,7 @@ fi if [ -d /var/discourse/shared/standalone/postgres_data_old ]; then echo - echo "Old PostgreSQL backup data cluster detected taking up $(du -hs /var/discourse/shared/standalone/postgres_data_old | awk '{print $1}') detected" + echo "Old PostgreSQL backup data cluster detected taking up $(du -hs /var/discourse/shared/standalone/postgres_data_old | awk '{print $1}')" read -p "Would you like to remove it? (y/N): " -n 1 -r && echo if [[ $REPLY =~ ^[Yy]$ ]]; then -- 2.25.1