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