dotfiles/create-cron-job.sh

8 lines
404 B
Bash
Raw Normal View History

2023-10-09 10:00:01 -05:00
#!/usr/bin/env bash
set -e
GIT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
2023-10-10 20:25:23 -05:00
(crontab -l 2>/dev/null; echo "* * * * * $GIT_DIR/commit.sh") | crontab -
############################################################################
# NOTE: commit signing must be turned off, or not require any interaction. #
############################################################################