Ver código fonte

consistent quoting

tags/v1.4.28
Jonathan Cobb 4 anos atrás
pai
commit
cd47b706b4
2 arquivos alterados com 2 adições e 2 exclusões
  1. +1
    -1
      bin/first_time_macosx.sh
  2. +1
    -1
      bin/first_time_ubuntu.sh

+ 1
- 1
bin/first_time_macosx.sh Ver arquivo

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

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

Carregando…
Cancelar
Salvar