laravel-backup icon indicating copy to clipboard operation
laravel-backup copied to clipboard

PG_DUMP Path

Open jamesblackwell opened this issue 10 years ago • 2 comments

A relatively small but handy addition would be the ability to specify the location of pg_dump like you can do for mysqldump.

jamesblackwell avatar May 27 '14 13:05 jamesblackwell

I don't use PG. The support for postgres was a pull request. Feel free to implement this feature, I'll merge it! :+1:

schickling avatar May 27 '14 14:05 schickling

Thanks, I will try and find the time. For anyone else running into issues with the wrong PG_DUMP I just modified the path to include the correct version:

.bash_profile

export PG_DUMP="/home/user/postgresql-***/src/bin/pg_dump/"
PATH=$PG_DUMP:$PATH:$HOME/bin

jamesblackwell avatar May 27 '14 14:05 jamesblackwell