From 90c6931fe221f6b85d306464fb5d92798dcca3a1 Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Sat, 25 Jan 2025 06:19:22 +0100 Subject: [PATCH] Client now builds commit.txt --- rex_client/Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/rex_client/Makefile b/rex_client/Makefile index 7e0d355..6a46642 100644 --- a/rex_client/Makefile +++ b/rex_client/Makefile @@ -1,10 +1,13 @@ NAME = rexclient -run: +commit.txt: + go generate + +run: commit.txt go run . -debug: +debug: commit.txt go run -tags debug,hints . -build: +build: commit.txt go build -tags no_emoji -trimpath -ldflags="-s -w" -buildvcs=false -o $(NAME)