Bläddra i källkod

consistent quoting

tags/v1.4.28
Jonathan Cobb 4 år sedan
förälder
incheckning
cd47b706b4
2 ändrade filer med 2 tillägg och 2 borttagningar
  1. +1
    -1
      bin/first_time_macosx.sh
  2. +1
    -1
      bin/first_time_ubuntu.sh

+ 1
- 1
bin/first_time_macosx.sh Visa fil

@@ -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

+ 1
- 1
bin/first_time_ubuntu.sh Visa fil

@@ -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

Laddar…
Avbryt
Spara