From 8d76f2e16abb6fea3324230c14ac16c7e8ba11c2 Mon Sep 17 00:00:00 2001 From: Liam Lowe Date: Wed, 6 May 2026 12:04:35 -0700 Subject: [PATCH] Remove accidentally tracked paths at repo root MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Two stray entries were committed by mistake: - s2s-proxy: empty 0-byte file (introduced in #214) - s2s-proxy-metrics-refactor: gitlink with no .gitmodules entry, created by git-add-ing a nested worktree (introduced in #224) Mark the s2s-proxy Make target .PHONY so make never tries to materialize a file named "s2s-proxy" at the repo root — the actual binary is built into ./bins/. --- Makefile | 1 + s2s-proxy | 0 s2s-proxy-metrics-refactor | 1 - 3 files changed, 1 insertion(+), 1 deletion(-) delete mode 100644 s2s-proxy delete mode 160000 s2s-proxy-metrics-refactor diff --git a/Makefile b/Makefile index 05917120..5db7fb7b 100644 --- a/Makefile +++ b/Makefile @@ -27,6 +27,7 @@ clean-bins: @rm -f ./bins/* # Binary target +.PHONY: s2s-proxy s2s-proxy: $(ALL_SRC) @printf $(COLOR) "Build s2s-proxy with CGO_ENABLED=$(CGO_ENABLED) for $(GOOS)/$(GOARCH)...\n" GOOS=$(GOOS) GOARCH=$(GOARCH) CGO_ENABLED=$(CGO_ENABLED) go build -ldflags "-X main.Version=$(VERSION)" -o ./bins/s2s-proxy ./cmd/proxy diff --git a/s2s-proxy b/s2s-proxy deleted file mode 100644 index e69de29b..00000000 diff --git a/s2s-proxy-metrics-refactor b/s2s-proxy-metrics-refactor deleted file mode 160000 index 01a8fb2d..00000000 --- a/s2s-proxy-metrics-refactor +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 01a8fb2dbfb47effaa84dc5ee255947346355270