mirror of
https://github.com/golang/go
synced 2024-11-19 06:54:39 -07:00
8c1a5674dd
Updates for the hg->git move. Change-Id: I4c1b91ada1b90090db958554c92d06fb1d36ec35 Reviewed-on: https://go-review.googlesource.com/1364 Reviewed-by: Andrew Gerrand <adg@golang.org>
13 lines
403 B
Bash
Executable File
13 lines
403 B
Bash
Executable File
set -ex
|
|
|
|
apt-get update
|
|
# For running curl to get the hg starter tarballs (faster than hg clone).
|
|
apt-get install -y --no-install-recommends curl 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
|