Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. -> mkdir temp && cd temp
  2.  
  3. -> go mod init 'temp'
  4.  
  5. -> cat go.mod
  6. module github.com/Helcaraxan/testing
  7.  
  8. go 1.13
  9.  
  10. -> go get github.com/google/go-github/v9 ## NB: That repo only got a go.mod in v18.0.0.
  11. go: downloading github.com/google/go-github v17.0.0+incompatible
  12. go: extracting github.com/google/go-github v17.0.0+incompatible
  13. go: finding github.com/google/go-github/v9 v9.0.0
  14. go get github.com/google/go-github/v9: module github.com/google/go-github@upgrade (v17.0.0+incompatible) found, but does not contain package github.com/google/go-github/v9
  15.  
  16. -> go get github.com/google/go-github
  17.  
  18. -> cat go.mod
  19. module github.com/Helcaraxan/testing
  20.  
  21. go 1.13
  22.  
  23. require github.com/google/go-github v17.0.0+incompatible // indirect
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement