Fix incorrect case of kill builtin

This commit is contained in:
Nick Chambers 2021-11-15 02:32:28 -06:00
parent bdd8fb3601
commit 228484de6f
1 changed files with 1 additions and 1 deletions

2
rowbot
View File

@ -509,7 +509,7 @@ on_sys_after_999_annoyatron900() {
on_sys_register_999_annoyatron900() {
while true; do
read -rt 10 </dev/zero
KILL -USR1 "$$"
kill -USR1 "$$"
done &
alarm_pid=$!