From 5f602a80b535e5723022b11fb8c2635b90501fce Mon Sep 17 00:00:00 2001 From: Darren Coxall Date: Thu, 11 Dec 2014 07:26:36 +0000 Subject: [PATCH] Update to Go 1.4 --- README.md | 3 +-- manifests/init.pp | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6a7ae3a..9cfc02b 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,6 @@ cd /path/to/repo vagrant up vagrant ssh # ... -cd /vagrant go version go install hello hello @@ -29,7 +28,7 @@ hello ``` ## Choosing golang version -This repo is hardcoded to use 1.3.3 although this can easily be changed after cloning. If you want to use another version simply +This repo is hardcoded to use 1.4 although this can easily be changed after cloning. If you want to use another version simply change the `$version` parameter in `manifests/init.pp`. The version string is taken from the [golang downloads list](http://golang.org/dl/). Once changed you can either call `vagrant up` if you haven't already setup the vagrant box or `vagrant provision` if the machine is already up. diff --git a/manifests/init.pp b/manifests/init.pp index a9f6a08..76e43dc 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -1,3 +1,3 @@ class { "golang": - version => "1.3.3" + version => "1.4" }