Merge pull request #464 from eGullGolf/issue463

Add step to install libpq-dev when building from source on Ubuntu
This commit is contained in:
Joe Nelson
2016-01-19 11:25:26 -08:00
+4
View File
@@ -46,6 +46,10 @@ wget -q -O- https://s3.amazonaws.com/download.fpcomplete.com/ubuntu/fpco.key | s
echo 'deb http://download.fpcomplete.com/ubuntu/trusty stable main'|sudo tee /etc/apt/sources.list.d/fpco.list
sudo apt-get update && sudo apt-get install stack -y
```
* Install libpq-dev
```
sudo apt-get install -y libpq-dev
```
* Build & install in one step
```bash