Fix for bug that forces all Go binaries to be based on Go 1.8 (the default)

This commit is contained in:
Andrew Newdigate 2017-12-21 11:55:07 +00:00 committed by Marin Jankovski
parent ab7d1bf72f
commit 6725e787b0
11 changed files with 40 additions and 25 deletions

View file

@ -1,10 +1,12 @@
#!/bin/bash
set -xeuo pipefail
IFS=$'\n\t'
set -xeo pipefail
export DEBIAN_FRONTEND=noninteractive
curl -sS -L https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
echo "deb http://apt.postgresql.org/pub/repos/apt/ xenial-pgdg main" | tee /etc/apt/sources.list.d/postgresql.list
apt-get update
env DEBIAN_FRONTEND="noninteractive" apt-get install -y postgresql-client
apt-get install -y postgresql-client
apt-get autoremove -yq