Remove rebase since files/ is being ignored in Docker container.

This commit is contained in:
2025-10-14 12:16:59 -07:00
parent f212c41734
commit 749a018a6e

View File

@@ -12,7 +12,7 @@ echo "*** Running cronjob @ `date` ***"
cd $DIR
# Pull any updates, and if the project is already up to date, exit successfully.
git pull --rebase | grep -v "up to date"
git pull | grep -v "up to date"
status="$?"
echo "* Pull status is '$status'."
if [[ $status != 0 ]]; then