Skip to content

Commit

Permalink
Use same to path and repository name
Browse files Browse the repository at this point in the history
Without this fix, `go install` fails as following.

```bash
$ go install github.com/davecheney/httpstat@master
go: downloading github.com/davecheney/httpstat v1.0.1-0.20201227061204-995a296aed9f
go install github.com/davecheney/httpstat@master: github.com/davecheney/httpstat@none updating to
	github.com/davecheney/[email protected]: parsing go.mod:
	module declares its path as: github.com/httpstat
	        but was required as: github.com/davecheney/httpstat
```
  • Loading branch information
y-yagi committed Apr 10, 2021
1 parent 995a296 commit a5095c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/httpstat
module github.com/davecheney/httpstat

go 1.15

Expand Down

0 comments on commit a5095c1

Please sign in to comment.