~sircmpwn/hare-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
2 2

[PATCH hare] cmd/hare: Do not set progress width to 0

Details
Message ID
<20220506111757.26371-1-contact+sr.ht@hacktivis.me>
DKIM signature
missing
Download raw message
Patch: +1 -1
From: "Haelwenn (lanodan) Monnier" <contact@hacktivis.me>

As can happen when building into gentoo's portage.

Signed-off-by: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
---
 cmd/hare/progress.ha | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/hare/progress.ha b/cmd/hare/progress.ha
index 433f0767..ee21a3b0 100644
--- a/cmd/hare/progress.ha
+++ b/cmd/hare/progress.ha
@@ -13,7 +13,7 @@ fn progress_update(plan: *plan) void = {

	const width = match (tty::winsize(tty)) {
	case let ts: tty::ttysize =>
		yield if (ts.columns > 64) 64 else ts.columns;
		yield if (ts.columns > 64 || ts.columns == 0) 64 else ts.columns;
	case =>
		yield 64;
	}: size;
-- 
2.35.1

[hare/patches] build success

builds.sr.ht <builds@sr.ht>
Details
Message ID
<CJSMZS012GLG.2EAM09174GDFL@cirno>
In-Reply-To
<20220506111757.26371-1-contact+sr.ht@hacktivis.me> (view parent)
DKIM signature
missing
Download raw message
hare/patches: SUCCESS in 1m55s

[cmd/hare: Do not set progress width to 0][0] from [Haelwenn (lanodan) Monnier][1]

[0]: https://lists.sr.ht/~sircmpwn/hare-dev/patches/32032
[1]: contact+sr.ht@hacktivis.me

✓ #752418 SUCCESS hare/patches/alpine.yml  https://builds.sr.ht/~sircmpwn/job/752418
✓ #752419 SUCCESS hare/patches/freebsd.yml https://builds.sr.ht/~sircmpwn/job/752419
Details
Message ID
<CJSO0GLI1E71.2W77EENMZWDFI@taiga>
In-Reply-To
<20220506111757.26371-1-contact+sr.ht@hacktivis.me> (view parent)
DKIM signature
missing
Download raw message
Thanks!

To git@git.sr.ht:~sircmpwn/hare
   403b0aaf..232ee414  master -> master
Reply to thread Export thread (mbox)