소스 검색

consistent quoting

tags/v1.4.28
Jonathan Cobb 4 년 전
부모
커밋
cd47b706b4
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +1
    -1
      bin/first_time_macosx.sh
  2. +1
    -1
      bin/first_time_ubuntu.sh

+ 1
- 1
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

+ 1
- 1
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

불러오는 중...
취소
저장