A .gitignore => .gitignore +3 -0
@@ 0,0 1,3 @@
+textwrap
+go.sum
+
M Makefile => Makefile +1 -1
@@ 1,5 1,5 @@
clean:
- rm -rf textwrap
+ rm -rf textwrap go.sum
build:
go build
M go.mod => go.mod +2 -2
@@ 1,3 1,3 @@
-module git.dominic-ricottone.com/textwrap
+module git.dominic-ricottone.com/~dricottone/textwrap
-go 1.15
+go 1.19
M main.go => main.go +1 -1
@@ 9,7 9,7 @@ import (
"regexp"
"flag"
- "git.dominic-ricottone.com/textwrap/common"
+ "git.dominic-ricottone.com/~dricottone/textwrap/common"
)
const LINE_LENGTH = 80