Add g++ library

This commit is contained in:
Andrew Cravenho 2018-10-31 16:12:03 +01:00
parent c1c25db8d4
commit df2d4d3055
1 changed files with 5 additions and 0 deletions

View File

@ -182,6 +182,11 @@ if ! which psql >/dev/null; then
yum install -y --enablerepo=epel postgresql >"$LOG"
fi
if ! which g++ >/dev/null; then
log "Installing gcc-c++.."
yum install -y gcc-c++ >"$LOG"
fi
function has_db() {
psql --tuples-only --no-align \
"$DATABASE_URL/postgres" \