Skip to content

Instantly share code, notes, and snippets.

View philMarius's full-sized avatar

Phil philMarius

View GitHub Profile
@philMarius
philMarius / pg-install-ubuntu
Last active June 23, 2017 10:05 — forked from shanna/pg-install
Postgres install from source on Ubuntu when the distribution installation won't give you a specific version.
#!/usr/bin/env bash
set -e
# Homebrew homebrew/versions was broken when I went to install postgres.
# This shell script just documents my install from source.
release=9.4.6
prefix=/usr/local/opt
mkdir -p $prefix