23 lines
465 B
Bash
23 lines
465 B
Bash
#!/bin/bash
|
|
source ../apikey
|
|
|
|
d=`date +%Y%m%d`
|
|
|
|
#echo "Todays date $d"
|
|
#mv "missing.mcl" "missing_old.mcl"
|
|
|
|
fromdate=$(ls -1 *_latest.mcl |grep -Eo '[[:digit:]]{8}')
|
|
|
|
#echo "Last date run $fromdate"
|
|
|
|
python2 "update_missing.py" "$fromdate""_latest.mcl" "$d"".mcl" $api_key $fromdate $d
|
|
|
|
cp "$d"".mcl" "$d""_latest.mcl"
|
|
mv "$fromdate""_latest.mcl" "archive/""$fromdate"".mcl"
|
|
|
|
git add "$d""_latest.mcl" "archive/"
|
|
git commit -m "Updated $d"
|
|
|
|
git push origin master
|
|
|