go mod tidy doesn't properly install fauxgl 🤔 #1

Open
opened 2026-09-05 16:32:27 +00:00 by xox · 0 comments

no idea if this was on purpose, but I would recommend that you remove:

replace github.com/fogleman/fauxgl => ./fauxgl

from ./go.mod since its fucking up everything, and it just errors when that package is getting installed.

error that occurs:

C:\Users\north\Downloads\Vertigo-main\vertigo>go mod tidy
go: vertexia-frontend/backend/renderer imports
        github.com/fogleman/fauxgl: github.com/fogleman/fauxgl@v0.0.0-20250110135958-abf826acbbbd: replacement directory ./fauxgl does not exist
go: vertexia-frontend imports
        github.com/gofiber/fiber/v3 tested by
        github.com/gofiber/fiber/v3.test imports
        github.com/fxamacker/cbor/v2: github.com/fogleman/fauxgl@v0.0.0-20250110135958-abf826acbbbd (replaced by ./fauxgl): reading fauxgl\go.mod: open C:\Users\north\Downloads\Vertigo-main\vertigo\fauxgl\go.mod: The system cannot find the path specified.
go: vertexia-frontend imports
        github.com/gofiber/fiber/v3 tested by
        github.com/gofiber/fiber/v3.test imports
        github.com/shamaton/msgpack/v3: github.com/fogleman/fauxgl@v0.0.0-20250110135958-abf826acbbbd (replaced by ./fauxgl): reading fauxgl\go.mod: open C:\Users\north\Downloads\Vertigo-main\vertigo\fauxgl\go.mod: The system cannot find the path specified.
go: vertexia-frontend imports
        github.com/gofiber/fiber/v3 tested by
        github.com/gofiber/fiber/v3.test imports
        github.com/stretchr/testify/assert: github.com/fogleman/fauxgl@v0.0.0-20250110135958-abf826acbbbd (replaced by ./fauxgl): reading fauxgl\go.mod: open C:\Users\north\Downloads\Vertigo-main\vertigo\fauxgl\go.mod: The system cannot find the path specified.
go: vertexia-frontend imports
        github.com/gofiber/fiber/v3 tested by
        github.com/gofiber/fiber/v3.test imports
        github.com/stretchr/testify/require: github.com/fogleman/fauxgl@v0.0.0-20250110135958-abf826acbbbd (replaced by ./fauxgl): reading fauxgl\go.mod: open C:\Users\north\Downloads\Vertigo-main\vertigo\fauxgl\go.mod: The system cannot find the path specified.
go: vertexia-frontend/backend/handlers imports
        github.com/shirou/gopsutil/v3/cpu tested by
        github.com/shirou/gopsutil/v3/cpu.test imports
        github.com/google/go-cmp/cmp: github.com/fogleman/fauxgl@v0.0.0-20250110135958-abf826acbbbd (replaced by ./fauxgl): reading fauxgl\go.mod: open C:\Users\north\Downloads\Vertigo-main\vertigo\fauxgl\go.mod: The system cannot find the path specified.
go: vertexia-frontend/backend/handlers imports
        github.com/shirou/gopsutil/v3/cpu tested by
        github.com/shirou/gopsutil/v3/cpu.test imports
        github.com/google/go-cmp/cmp/cmpopts: github.com/fogleman/fauxgl@v0.0.0-20250110135958-abf826acbbbd (replaced by ./fauxgl): reading fauxgl\go.mod: open C:\Users\north\Downloads\Vertigo-main\vertigo\fauxgl\go.mod: The system cannot find the path specified.
go: vertexia-frontend/backend/handlers imports
        github.com/shirou/gopsutil/v3/cpu imports
        github.com/shoenig/go-m1cpu tested by
        github.com/shoenig/go-m1cpu.test imports
        github.com/shoenig/test/must: github.com/fogleman/fauxgl@v0.0.0-20250110135958-abf826acbbbd (replaced by ./fauxgl): reading fauxgl\go.mod: open C:\Users\north\Downloads\Vertigo-main\vertigo\fauxgl\go.mod: The system cannot find the path specified.
go: vertexia-frontend imports
        github.com/gofiber/fiber/v3 imports
        github.com/valyala/fasthttp imports
        github.com/andybalholm/brotli tested by
        github.com/andybalholm/brotli.test imports
        github.com/xyproto/randomstring: github.com/fogleman/fauxgl@v0.0.0-20250110135958-abf826acbbbd (replaced by ./fauxgl): reading fauxgl\go.mod: open C:\Users\north\Downloads\Vertigo-main\vertigo\fauxgl\go.mod: The system cannot find the path specified.

C:\Users\north\Downloads\Vertigo-main\vertigo>
no idea if this was on purpose, but I would recommend that you remove: `replace github.com/fogleman/fauxgl => ./fauxgl` from **./go.mod** since its fucking up everything, and it just errors when that package is getting installed. error that occurs: ``` C:\Users\north\Downloads\Vertigo-main\vertigo>go mod tidy go: vertexia-frontend/backend/renderer imports github.com/fogleman/fauxgl: github.com/fogleman/fauxgl@v0.0.0-20250110135958-abf826acbbbd: replacement directory ./fauxgl does not exist go: vertexia-frontend imports github.com/gofiber/fiber/v3 tested by github.com/gofiber/fiber/v3.test imports github.com/fxamacker/cbor/v2: github.com/fogleman/fauxgl@v0.0.0-20250110135958-abf826acbbbd (replaced by ./fauxgl): reading fauxgl\go.mod: open C:\Users\north\Downloads\Vertigo-main\vertigo\fauxgl\go.mod: The system cannot find the path specified. go: vertexia-frontend imports github.com/gofiber/fiber/v3 tested by github.com/gofiber/fiber/v3.test imports github.com/shamaton/msgpack/v3: github.com/fogleman/fauxgl@v0.0.0-20250110135958-abf826acbbbd (replaced by ./fauxgl): reading fauxgl\go.mod: open C:\Users\north\Downloads\Vertigo-main\vertigo\fauxgl\go.mod: The system cannot find the path specified. go: vertexia-frontend imports github.com/gofiber/fiber/v3 tested by github.com/gofiber/fiber/v3.test imports github.com/stretchr/testify/assert: github.com/fogleman/fauxgl@v0.0.0-20250110135958-abf826acbbbd (replaced by ./fauxgl): reading fauxgl\go.mod: open C:\Users\north\Downloads\Vertigo-main\vertigo\fauxgl\go.mod: The system cannot find the path specified. go: vertexia-frontend imports github.com/gofiber/fiber/v3 tested by github.com/gofiber/fiber/v3.test imports github.com/stretchr/testify/require: github.com/fogleman/fauxgl@v0.0.0-20250110135958-abf826acbbbd (replaced by ./fauxgl): reading fauxgl\go.mod: open C:\Users\north\Downloads\Vertigo-main\vertigo\fauxgl\go.mod: The system cannot find the path specified. go: vertexia-frontend/backend/handlers imports github.com/shirou/gopsutil/v3/cpu tested by github.com/shirou/gopsutil/v3/cpu.test imports github.com/google/go-cmp/cmp: github.com/fogleman/fauxgl@v0.0.0-20250110135958-abf826acbbbd (replaced by ./fauxgl): reading fauxgl\go.mod: open C:\Users\north\Downloads\Vertigo-main\vertigo\fauxgl\go.mod: The system cannot find the path specified. go: vertexia-frontend/backend/handlers imports github.com/shirou/gopsutil/v3/cpu tested by github.com/shirou/gopsutil/v3/cpu.test imports github.com/google/go-cmp/cmp/cmpopts: github.com/fogleman/fauxgl@v0.0.0-20250110135958-abf826acbbbd (replaced by ./fauxgl): reading fauxgl\go.mod: open C:\Users\north\Downloads\Vertigo-main\vertigo\fauxgl\go.mod: The system cannot find the path specified. go: vertexia-frontend/backend/handlers imports github.com/shirou/gopsutil/v3/cpu imports github.com/shoenig/go-m1cpu tested by github.com/shoenig/go-m1cpu.test imports github.com/shoenig/test/must: github.com/fogleman/fauxgl@v0.0.0-20250110135958-abf826acbbbd (replaced by ./fauxgl): reading fauxgl\go.mod: open C:\Users\north\Downloads\Vertigo-main\vertigo\fauxgl\go.mod: The system cannot find the path specified. go: vertexia-frontend imports github.com/gofiber/fiber/v3 imports github.com/valyala/fasthttp imports github.com/andybalholm/brotli tested by github.com/andybalholm/brotli.test imports github.com/xyproto/randomstring: github.com/fogleman/fauxgl@v0.0.0-20250110135958-abf826acbbbd (replaced by ./fauxgl): reading fauxgl\go.mod: open C:\Users\north\Downloads\Vertigo-main\vertigo\fauxgl\go.mod: The system cannot find the path specified. C:\Users\north\Downloads\Vertigo-main\vertigo> ```
Sign in to join this conversation.
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
VERTEXIA/Vertigo#1
No description provided.