summaryrefslogtreecommitdiff
path: root/install.md
diff options
context:
space:
mode:
authorTomSweeneyRedHat <tsweeney@redhat.com>2018-09-05 10:49:19 -0400
committerAtomic Bot <atomic-devel@projectatomic.io>2018-09-05 23:38:19 +0000
commit9ae6d773b4e6d036d58d3bf7576cc91f16b4f68d (patch)
treea291ba95b6c914b10ae34ae0369a70b92c2f6a0d /install.md
parent1ee466eee4f224cfa7e57b7556b5119b2f02f653 (diff)
downloadpodman-9ae6d773b4e6d036d58d3bf7576cc91f16b4f68d.tar.gz
podman-9ae6d773b4e6d036d58d3bf7576cc91f16b4f68d.tar.bz2
podman-9ae6d773b4e6d036d58d3bf7576cc91f16b4f68d.zip
Added GOPATH/bin to PATH install.md
Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com> Closes: #1408 Approved by: rhatdan
Diffstat (limited to 'install.md')
-rw-r--r--install.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/install.md b/install.md
index 7fc6475cd..a6b912a87 100644
--- a/install.md
+++ b/install.md
@@ -110,11 +110,13 @@ GOPATH
└── libpod
```
-First, configure a `GOPATH` (if you are using go1.8 or later, this defaults to `~/go`).
+First, configure a `GOPATH` (if you are using go1.8 or later, this defaults to `~/go`)
+and then add $GOPATH/bin to your $PATH environment variable.
```bash
export GOPATH=~/go
mkdir -p $GOPATH
+export PATH=$PATH:$GOPATH/bin
```
Next, clone the source code using: