commit e9e1dfedf92145aab0ed87d97cb1669cebc348e7
parent 82213191adc25137c704df4786a71bce40b6079f
Author: Drew DeVault <sir@cmpwn.com>
Date: Sat, 1 Oct 2022 14:36:51 +0200
driver: drop bell on completion
Hare builds are usually fast enough that this is more annoying than
anything else.
Diffstat:
1 file changed, 0 insertions(+), 3 deletions(-)
diff --git a/cmd/hare/subcmds.ha b/cmd/hare/subcmds.ha
@@ -180,9 +180,6 @@ fn build(args: []str) void = {
case !exec::exit_status =>
fmt::fatalf("{} {}: build failed", os::args[0], os::args[1]);
};
- if (tty::isatty(os::stdout_file)) {
- fmt::print("\a")!;
- };
};
fn cache(args: []str) void = {