From 4457e9bad2afa3acc6d5d61924ce57af7ec0fd2f Mon Sep 17 00:00:00 2001 From: "Zed A. Shaw" Date: Wed, 10 Sep 2025 10:31:22 -0400 Subject: [PATCH] Moved to the new /go URL. --- Makefile | 2 +- README.md | 2 +- go.mod | 2 +- main.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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" )