~emersion/soju-dev

This thread contains a patchset. You're looking at the original emails, but you may wish to use the patch review UI. Review patch
1

[PATCH] Persist go binaries and gitignore sojudb

Details
Message ID
<20230211112051.14504-1-dan@palm93.com>
DKIM signature
pass
Download raw message
Patch: +2 -1
Go doesn't persist generated binaries when building multiple packages
without the -o flag.
---
 .gitignore | 1 +
 Makefile   | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index 885b688..1067067 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,5 @@
/soju
/sojuctl
/sojudb
/soju.db
/doc/soju.1
diff --git a/Makefile b/Makefile
index 1ec591b..9ae475e 100644
--- a/Makefile
+++ b/Makefile
@@ -18,7 +18,7 @@ goflags := $(GOFLAGS) -ldflags=" \
all: soju sojudb sojuctl doc/soju.1

soju:
	$(GO) build $(goflags) ./cmd/soju ./cmd/sojudb ./cmd/sojuctl
	$(GO) build -o . $(goflags) ./cmd/soju ./cmd/sojudb ./cmd/sojuctl
sojudb sojuctl: soju
doc/soju.1: doc/soju.1.scd
	$(SCDOC) <doc/soju.1.scd >doc/soju.1
-- 
2.39.1
Details
Message ID
<qoRocpXbVaBGCgbyzxhvZ7BDxjycI2w5xMtTSIhoa0W6-rUWtRGrST7Ps6TJZU6OExnUfnm5P9RnFCRNNtzSTLZbwENpbPYUJuA8A9zGUS4=@emersion.fr>
In-Reply-To
<20230211112051.14504-1-dan@palm93.com> (view parent)
DKIM signature
pass
Download raw message
Split into 2 patches and pushed, thanks!
Reply to thread Export thread (mbox)