From c1710b77f46f0937e3bca1de30566130ef03d461 Mon Sep 17 00:00:00 2001 From: yakmannski <104126884+yakmannski@users.noreply.github.com> Date: Fri, 22 Apr 2022 14:53:28 +0200 Subject: [PATCH] Renaming module will break the build 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 ``` --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 304e149..715e1c4 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module smap +module github.com/s0md3v/smap go 1.18