From 05cb0c54919777298e9dbabfdb12f740d9508a9e Mon Sep 17 00:00:00 2001 From: "Zed A. Shaw" Date: Sun, 4 Jan 2026 13:31:38 -0500 Subject: [PATCH] Compile it into bin/ instead. --- .ozai.json | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.ozai.json b/.ozai.json index 388f607..5c91ada 100644 --- a/.ozai.json +++ b/.ozai.json @@ -3,7 +3,7 @@ "Processes": { "webapp": { "URL": "/webapp", - "Command": "./webapp", + "Command": "./bin/webapp", "Args": [] }, "ssgod": { diff --git a/Makefile b/Makefile index 7a5b63c..1d9855f 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ else endif build: - go build . + go build -o bin/webapp . site: go tool ssgod