first image: git auto puller

This commit is contained in:
2020-01-18 19:54:24 -06:00
parent 9f57bd71c6
commit 5a2ea413f7
4 changed files with 31 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#!/bin/sh
set -e
LOG=/var/log/pull.log
touch $LOG
echo `date`": start pulling" >> $LOG
cd /repo && git pull
echo `date`": done" >> $LOG