diff --git a/Makefile b/Makefile index df1aa25..1323a2d 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ build: go build . test: - go test zedshaw.games/ssgod/tests -c -o runtests$(GO_IS_STUPID_EXE) + go test lcthw.dev/go/ssgod/tests -c -o runtests$(GO_IS_STUPID_EXE) ./runtests$(GO_IS_STUPID_EXE) docs: diff --git a/README.md b/README.md index d465556..f127130 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ SSG is a Static Site Generator that is only a Static Site Generator. No resumes You can install it with the latest tool system: ```shell -go get -tool git.learnjsthehardway.com/learn-code-the-hard-way/ssgod +go get -tool lcthw.dev/go/ssgod ``` After that you have the ability to run the tool inside your project: diff --git a/go.mod b/go.mod index 6e8ee12..d621bf4 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module lcthw.dev/learn-code-the-hard-way/ssgod +module lcthw.dev/go/ssgod go 1.24.2 diff --git a/main.go b/main.go index 701f3dc..19899b6 100644 --- a/main.go +++ b/main.go @@ -12,7 +12,7 @@ import ( "flag" "time" "text/template" - "lcthw.dev/learn-code-the-hard-way/ssgod/config" + "lcthw.dev/go/ssgod/config" "github.com/yuin/goldmark" "github.com/fsnotify/fsnotify" )