Hide line 28: kill no such process error

This commit is contained in:
zen0bit 2024-05-03 15:28:43 +02:00
parent 61f068004b
commit f0026dfe9b
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ export LC_ALL=C
function cleanup() {
if [ -n "$(jobs -p)" ]; then
kill "$(jobs -p)"
kill "$(jobs -p)" 2>/dev/null
fi
}