@ -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:
@ -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:
@ -1,4 +1,4 @@
module lcthw.dev/learn-code-the-hard-way/ssgod
module lcthw.dev/go/ssgod
go 1.24.2
@ -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"
)