mirror of
https://github.com/serghey-rodin/vesta.git
synced 2025-08-14 18:49:17 -07:00
Merge pull request #1267 from IStranger/master
fix db.sh for postgres 9.5+
This commit is contained in:
commit
aefc654922
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ psql_query() {
|
|||
}
|
||||
|
||||
psql_dump() {
|
||||
pg_dump -h $HOST -U $USER -c --inserts -O -x -i -f $1 $2 2>/tmp/e.psql
|
||||
pg_dump -h $HOST -U $USER -c --inserts -O -x -f $1 $2 2>/tmp/e.psql
|
||||
if [ '0' -ne "$?" ]; then
|
||||
rm -rf $tmpdir
|
||||
if [ "$notify" != 'no' ]; then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue