Fix module path in go.mod
Created by: tommyknows
Description
The module path in the go.mod
file is listed as glab
, although to go get
it, the correct path would be github.com/profclems/glab
.
This makes it impossible to run go get github.com/profclems/glab
.
Expected Behavior
go get github.com/profclems/glab
runs without an error, building the binary.
Actual Behavior
go: downloading github.com/profclems/glab v1.10.0
go: github.com/profclems/glab upgrade => v1.10.0
go get: github.com/profclems/glab@v1.10.0: parsing go.mod:
module declares its path as: glab
but was required as: github.com/profclems/glab
Possible Fix
Change the first line in the go.mod
file from module glab
to module github.com/profclems/glab
.
Or is there a reason why this is the way it is?