From cd47b706b4af648ae11047d84aa82912e16be28e Mon Sep 17 00:00:00 2001 From: Jonathan Cobb Date: Thu, 19 Nov 2020 15:45:41 -0500 Subject: [PATCH] consistent quoting --- bin/first_time_macosx.sh | 2 +- bin/first_time_ubuntu.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/first_time_macosx.sh b/bin/first_time_macosx.sh index dc1bfe9c..403b4c8c 100644 --- a/bin/first_time_macosx.sh +++ b/bin/first_time_macosx.sh @@ -64,7 +64,7 @@ fi # Create DB user 'bubble', with the ability to create databases if [[ $(db_user_exists 'bubble') == "1" ]] ; then - echo "PostgreSQL user 'bubble' already exists, not creating" + echo "PostgreSQL user bubble already exists, not creating" else createuser --createdb bubble || die "Error creating bubble DB user" fi diff --git a/bin/first_time_ubuntu.sh b/bin/first_time_ubuntu.sh index f7ebebeb..6b4d73b1 100755 --- a/bin/first_time_ubuntu.sh +++ b/bin/first_time_ubuntu.sh @@ -48,7 +48,7 @@ sudo service postgresql restart || die "Error restarting pgsql" # Create DB user 'bubble', with the ability to create databases if [[ $(db_user_exists 'bubble') == "1" ]] ; then - echo "PostgreSQL user 'bubble' already exists, not creating" + echo "PostgreSQL user bubble already exists, not creating" else createuser --createdb bubble || die "Error creating bubble DB user" fi