Added line to disable dmesg warnings and errors about disks and stuff, should give a cleaner output now

This commit is contained in:
bluesaxman 2022-03-09 09:40:31 -07:00
parent 17b416926e
commit ff321bd2fd

View File

@ -39,6 +39,9 @@ my %color = (
"reset" => `tput sgr0` "reset" => `tput sgr0`
); );
# Disable dmesg logs to console because ew gross
system("dmesg -n 1");
my $pretend = grep /--dryrun/, @ARGV; my $pretend = grep /--dryrun/, @ARGV;
my $longrun = grep /--long/, @ARGV; my $longrun = grep /--long/, @ARGV;