From 1adbadde80a9ce657d29e1b2163509007c8c3554 Mon Sep 17 00:00:00 2001 From: jbbarth Date: Mon, 26 Aug 2013 16:39:38 +0200 Subject: [PATCH] Add mercurial to the list of packages needed in a dev environment The dev environment setup procedure fails if mercurial is not installed on the machine, it cannot download stuff from http://code.google.com/p/go.net for instance. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2b3628375a..671c24109b 100644 --- a/README.md +++ b/README.md @@ -329,7 +329,7 @@ Setting up a dev environment Instructions that have been verified to work on Ubuntu 12.10, ```bash -sudo apt-get -y install lxc curl xz-utils golang git +sudo apt-get -y install lxc curl xz-utils golang git mercurial export GOPATH=~/go/ export PATH=$GOPATH/bin:$PATH