Skip to content

Commit

Permalink
Renaming module will break the build
Browse files Browse the repository at this point in the history
The module name change from github.com/s0md3v/smap will cause an error with the require statement:

``` 
go install -v github.com/s0md3v/smap/cmd/smap@latest
go.mod:
        module declares its path as: smap
                but was required as: github.com/s0md3v/smap
```
  • Loading branch information
yakmannski authored Apr 22, 2022
1 parent 90727c1 commit c1710b7
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 smap
module github.com/s0md3v/smap

go 1.18

Expand Down

0 comments on commit c1710b7

Please sign in to comment.