~sircmpwn/hare-dev

hare: cmd/hare: bell the terminal when build completes v1 APPLIED

Noam Preil: 1
 cmd/hare: bell the terminal when build completes

 1 files changed, 3 insertions(+), 0 deletions(-)
#708694 alpine.yml failed
#708695 freebsd.yml failed
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.sr.ht/~sircmpwn/hare-dev/patches/29996/mbox | git am -3
Learn more about email & git

[PATCH hare] cmd/hare: bell the terminal when build completes Export this patch

Signed-off-by: Noam Preil <noam@pixelhero.dev>
---
 cmd/hare/subcmds.ha | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/cmd/hare/subcmds.ha b/cmd/hare/subcmds.ha
index 60ad3d5..ac0bc15 100644
--- a/cmd/hare/subcmds.ha
+++ b/cmd/hare/subcmds.ha
@@ -179,6 +179,9 @@ fn build(args: []str) void = {
	case !exec::exit_status =>
		fmt::fatal("{} {}: build failed", os::args[0], os::args[1]);
	};
	if (tty::isatty(os::stdout_file)) {
		io::write(os::stdout_file, ['\a'])!;
	};
};

fn cache(args: []str) void = {
-- 
2.35.1
Thanks!

To git@git.sr.ht:~sircmpwn/hare
   0f4a702..571fbcc  master -> master