Skip to content

Commit

Permalink
Remove trailing / from export of GOPATH (#1282)
Browse files Browse the repository at this point in the history
In the docs, there's a / too much when exporting the variables. This
resulted in a double slash in the path, if copy-pasting the commands
straight from docs.
  • Loading branch information
lindhe authored and Andres Martinez Gotor committed Nov 11, 2019
1 parent 808b4f2 commit a4ebbe5
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/developer/apprepository-controller.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The `apprepository-controller` is a Kubernetes controller for managing Helm char
## Environment

```bash
export GOPATH=~/gopath/
export GOPATH=~/gopath
export PATH=$GOPATH/bin:$PATH
export KUBEAPPS_DIR=$GOPATH/src/github.com/kubeapps/kubeapps
```
Expand Down
2 changes: 1 addition & 1 deletion docs/developer/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This guide explains how to build Kubeapps.
## Environment setup

```bash
export GOPATH=~/gopath/
export GOPATH=~/gopath
export PATH=$GOPATH/bin:$PATH
export KUBEAPPS_DIR=$GOPATH/src/github.com/kubeapps/kubeapps
```
Expand Down
2 changes: 1 addition & 1 deletion docs/developer/chart-repo.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The `chart-repo` component is tool that scans a Helm chart repository and popula
## Environment

```bash
export GOPATH=~/gopath/
export GOPATH=~/gopath
export PATH=$GOPATH/bin:$PATH
export MONOCULAR_DIR=$GOPATH
```
Expand Down
2 changes: 1 addition & 1 deletion docs/developer/chartsvc.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The `chartsvc` component is a micro-service that creates an API endpoint for acc
## Environment

```bash
export GOPATH=~/gopath/
export GOPATH=~/gopath
export PATH=$GOPATH/bin:$PATH
export MONOCULAR_DIR=$GOPATH
```
Expand Down
2 changes: 1 addition & 1 deletion docs/developer/dashboard.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The dashboard is the main UI component of the Kubeapps project. Written in Javas
## Environment

```bash
export GOPATH=~/gopath/
export GOPATH=~/gopath
export PATH=$GOPATH/bin:$PATH
export KUBEAPPS_DIR=$GOPATH/src/github.com/kubeapps/kubeapps
```
Expand Down
2 changes: 1 addition & 1 deletion docs/developer/tiller-proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The `tiller-proxy` component is a micro-service that creates a API endpoint for
## Environment

```bash
export GOPATH=~/gopath/
export GOPATH=~/gopath
export PATH=$GOPATH/bin:$PATH
export KUBEAPPS_DIR=$GOPATH/src/github.com/kubeapps/kubeapps
```
Expand Down

0 comments on commit a4ebbe5

Please sign in to comment.