install.sh: failed to add to crontab when there's no crontab

This commit is contained in:
xiongdian.me 2023-06-08 21:45:15 +08:00
parent e937935a28
commit c9e2dfa8de

View File

@ -197,6 +197,9 @@ install_crontab()
{
if [[ -x $(command -v crontab) ]]; then
fmt_note "installing \"$CRON_JOB\" to crontab ..."
if ! crontab -l 1>/dev/null 2>&1; then
echo -n | crontab -
fi
( crontab -l | grep -vxF "${CRON_JOB}" | grep -v "no crontab for"; echo "$CRON_JOB" ) | crontab -
else
fmt_warning "crontab does not exist. skipping ..."