Merge pull request from vrothberg/fix-contributing

CONTRIBUTING.md: fix project paths
This commit is contained in:
OpenShift Merge Robot
2019-07-08 17:01:28 +02:00
committed by GitHub

@ -48,18 +48,12 @@ First you need to fork this project on GitHub.
Be sure to have [defined your `$GOPATH` environment variable](https://github.com/golang/go/wiki/GOPATH). Be sure to have [defined your `$GOPATH` environment variable](https://github.com/golang/go/wiki/GOPATH).
Create a path that correspond to your clone `mkdir -p $GOPATH/github.com/<you>`. Create a path that corresponds to the go import paths of libpod: `mkdir -p $GOPATH/src/github.com/containers`.
Clone your fork locally: Then clone your fork locally:
```shell ```shell
$ git clone git@github.com:<you>/libpod github.com/<you> $GOPATH/github.com/<you>/libpod $ git clone git@github.com:<you>/libpod $GOPATH/src/github.com/containers/libpod
$ cd $GOPATH/github.com/<you>/libpod $ cd $GOPATH/src/github.com/containers/libpod
```
You can also use `go get` to clone your fork:
```shell
$ go get github.com:<you>/libpod
$ cd $GOPATH/github.com/<you>/libpod
``` ```
### Deal with make ### Deal with make