From 552c1b5353a892c20e9ad35647555fe9d95c0744 Mon Sep 17 00:00:00 2001 From: Shawn Pearce Date: Thu, 27 Nov 2014 11:48:28 -0800 Subject: [PATCH] Recommend bootstrapping a stable version of Buck The tip of the Buck tree may not compile. It happens, software is fuzzy and humans make mistakes. The version of Buck used by .buckversion in Gerrit is more likely to be known to build. Recommend checking out that version to start a new workspace for Gerrit. Change-Id: Idad3a461e40a0b0e2103231827b3935d37d52566 --- Documentation/dev-buck.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/dev-buck.txt b/Documentation/dev-buck.txt index 3b113821fa..d5bd4b4454 100644 --- a/Documentation/dev-buck.txt +++ b/Documentation/dev-buck.txt @@ -14,6 +14,7 @@ Clone the git and build it: ---- git clone https://gerrit.googlesource.com/buck cd buck + git checkout $(cat ../gerrit/.buckversion) ant ----