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