From f9b26a266651c59f3fee95a01b6e0f04569648e6 Mon Sep 17 00:00:00 2001 From: Rickard von Essen Date: Sat, 9 Jun 2018 08:59:00 +0200 Subject: [PATCH] Updated installation docs to not require GOPATH env var --- website/source/intro/getting-started/install.html.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/source/intro/getting-started/install.html.md b/website/source/intro/getting-started/install.html.md index e66328e61..ce8a8e5f4 100644 --- a/website/source/intro/getting-started/install.html.md +++ b/website/source/intro/getting-started/install.html.md @@ -50,13 +50,13 @@ contains instructions for setting the PATH on Windows. ## Compiling from Source To compile from source, you will need [Go](https://golang.org) installed and -configured properly (including a `GOPATH` environment variable set), as well -as a copy of [`git`](https://www.git-scm.com/) in your `PATH`. +configured properly as well as a copy of [`git`](https://www.git-scm.com/) +in your `PATH`. 1. Clone the Packer repository from GitHub into your `GOPATH`: ``` shell - $ mkdir -p $GOPATH/src/github.com/hashicorp && cd $_ + $ mkdir -p $(go enc GOPATH)/src/github.com/hashicorp && cd $_ $ git clone https://github.com/hashicorp/packer.git $ cd packer ```