From e09ccb58b4584d7c5d1f3861757cb48882cc56f3 Mon Sep 17 00:00:00 2001 From: Karl Hepworth Date: Tue, 19 Sep 2017 20:01:28 +1000 Subject: [PATCH] Adjust defaults to match recent convention changes. Signed-off-by: Karl Hepworth --- tasks/setup.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/setup.yml b/tasks/setup.yml index 59179f1..1d6585d 100644 --- a/tasks/setup.yml +++ b/tasks/setup.yml @@ -45,19 +45,19 @@ - name: "Go-Lang | Define GOROOT" set_fact: - GOROOT: "{{ fubarhouse_user_dir }}/go" + GOROOT: /usr/local/go when: GOROOT is not defined - name: "Go-Lang | Define GOPATH" set_fact: - GOPATH: "{{ GOROOT }}/bin" + GOPATH: "{{ fubarhouse_user_dir }}/go" when: - GOROOT is defined - GOPATH is not defined - name: "Go-Lang | Define GOROOT_BOOTSTRAP" set_fact: - GOROOT_BOOTSTRAP: "{{ fubarhouse_user_dir }}/go1.4" + GOROOT_BOOTSTRAP: /usr/local/go1.4" when: - fubarhouse_user_dir is defined - GOROOT_BOOTSTRAP is not defined