12 lines
174 B
Bash
12 lines
174 B
Bash
|
#! /bin/bash
|
||
|
|
||
|
TIME=`(time python3 updater.py ) 2>&1`
|
||
|
|
||
|
# add every new file
|
||
|
git add raw
|
||
|
git add craft
|
||
|
git add last-modified.db
|
||
|
|
||
|
git commit -m 'daily cron' -m "$TIME"
|
||
|
git push
|