add common issue

Este commit está contenido en:
AJ ONeal 2019-06-21 00:47:42 -06:00
padre ef45a8a999
commit 039b465b75
Se han modificado 1 ficheros con 17 adiciones y 0 borrados

Ver fichero

@ -176,3 +176,20 @@ Shows the most recent commit.
git rev-parse HEAD
# 0000000000000000000000000000000000000000
```
# Errors
### cannot find package "."
```txt
package git.rootprojects.org/root/go-gitver: cannot find package "." in:
/Users/me/go-example/vendor/git.rootprojects.org/root/go-gitver
cmd/example/example.go:1: running "go": exit status 1
```
You forgot to update deps and re-vendor:
```bash
go mod tidy
go mod vendor
```