From 13201cbfeaefdf64e94d8f18031fea285fc91adb Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Sat, 25 Aug 2012 22:16:11 -0400 Subject: [PATCH] Adding a local go installation since the one shipped by way of ubuntu repos is *just* outdated enough. --- gotime/.gitignore | 2 ++ gotime/.installation/Makefile | 5 +++++ 2 files changed, 7 insertions(+) create mode 100644 gotime/.installation/Makefile diff --git a/gotime/.gitignore b/gotime/.gitignore index ae3c172..35551c6 100644 --- a/gotime/.gitignore +++ b/gotime/.gitignore @@ -1 +1,3 @@ /bin/ +/.env +/.installation/go/ diff --git a/gotime/.installation/Makefile b/gotime/.installation/Makefile new file mode 100644 index 0000000..c1108e1 --- /dev/null +++ b/gotime/.installation/Makefile @@ -0,0 +1,5 @@ +go/src/all.bash: + hg clone -u release https://code.google.com/p/go + +go/bin/go: go/src/all.bash + cd go/src && ./all.bash