From 3e4b68285886c016ec95992eaa76b8b41f2017bf Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sun, 26 Apr 2026 23:36:20 +0000 Subject: [PATCH] fix(core): move cmd/xportal to xcmd/xportal - sumdb has phantom module entries for cmd/ and cmd/xportal paths - renaming to xcmd/xportal avoids poisoned sumdb resolution - new install path: go.lumeweb.com/xportal/xcmd/xportal@latest --- Makefile | 2 +- README.md | 2 +- {cmd => xcmd}/xportal/main.go | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename {cmd => xcmd}/xportal/main.go (100%) diff --git a/Makefile b/Makefile index 67cca52..3ac1b9b 100644 --- a/Makefile +++ b/Makefile @@ -10,4 +10,4 @@ build: go-build @echo "Build completed." go-build: - go build -ldflags='-s -w -linkmode external -extldflags "-static"' -o xportal ./cmd/xportal \ No newline at end of file + go build -ldflags='-s -w -linkmode external -extldflags "-static"' -o xportal ./xcmd/xportal \ No newline at end of file diff --git a/README.md b/README.md index 4c4018f..b4af616 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ A portal builder inspired by caddy. It borrows a majority of code from https://g ```bash -go install go.lumeweb.com/xportal/cmd/xportal@latest +go install go.lumeweb.com/xportal/xcmd/xportal@latest ``` diff --git a/cmd/xportal/main.go b/xcmd/xportal/main.go similarity index 100% rename from cmd/xportal/main.go rename to xcmd/xportal/main.go