Skip to content

Commit

Permalink
Merge pull request #15 from cytopia/release-1.1.2
Browse files Browse the repository at this point in the history
Dont fail when removing a pidfile
  • Loading branch information
cytopia authored Oct 17, 2024
2 parents 8faf277 + 1304ada commit 8db8e3d
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 8db8e3d

Please # to comment.