1
0
mirror of https://github.com/golang/go synced 2024-11-19 05:54:44 -07:00
go/dashboard/env/commit-watcher/scripts/install-apt-deps.sh
Brad Fitzpatrick 551edbff13 dashboard: more environment cleanups
sid was trying to use hg still.

And remove curl everywhere (except nacl). It's unnecessary.

Change-Id: I2a235d83b2bc7cf599c8de5796c724d8f368348e
Reviewed-on: https://go-review.googlesource.com/1368
Reviewed-by: David Symonds <dsymonds@golang.org>
2014-12-12 05:59:31 +00:00

12 lines
324 B
Bash
Executable File

set -ex
apt-get update
apt-get install -y --no-install-recommends ca-certificates
# For building Go's bootstrap 'dist' prog
apt-get install -y --no-install-recommends gcc libc6-dev
# For interacting with the Go source & subrepos:
apt-get install -y --no-install-recommends git-core
apt-get clean
rm -fr /var/lib/apt/lists