build: Ignore error from pkill on apt upgrade (fixes #7628) (#7629)

This commit is contained in:
Simon Frei 2021-05-04 18:33:25 +02:00 committed by GitHub
parent 87a0eecc31
commit f4e112f404
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -10,5 +10,5 @@ fi
if [ $has_systemd -eq 0 ] && [ -n "$(systemctl list-units --plain --no-legend {{.Service}})" ]; then
deb-systemd-invoke try-restart "{{.Service}}"
else
pkill -HUP -x {{.Command}}
pkill -HUP -x {{.Command}} || :
fi