Skip to content

Commit

Permalink
Dont fail when removing a pidfile
Browse files Browse the repository at this point in the history
  • Loading branch information
cytopia committed Oct 17, 2024
1 parent 8faf277 commit 1304ada
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/autorunner
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ execute() {
logger "err" "(${bin}) could not kill pid: '${pid}'"
else
# Remove pidfile
rm "${pidfile}"
rm "${pidfile}" || true
# Log
logger "info" "(${bin}) killed pid: '${pid}'"
# Notify
Expand Down

0 comments on commit 1304ada

Please # to comment.