updated bash script
This commit is contained in:
parent
deedf3a8a2
commit
0daa99dbb2
@ -8,22 +8,24 @@ error_exit() {
|
|||||||
source ../.apikey || error_exit "Cannot find apikey"
|
source ../.apikey || error_exit "Cannot find apikey"
|
||||||
|
|
||||||
d=`date +%Y%m%d`
|
d=`date +%Y%m%d`
|
||||||
|
|
||||||
echo "Todays date $d"
|
|
||||||
#mv "missing.mcl" "missing_old.mcl"
|
#mv "missing.mcl" "missing_old.mcl"
|
||||||
|
|
||||||
fromdate=$(ls -1 *_latest.mcl |grep -Eo '[[:digit:]]{8}') || error_exit "cannot latest mcl file"
|
fromdate=$(ls -1 *_latest.mcl |grep -Eo '[[:digit:]]{8}') || error_exit "cannot latest mcl file"
|
||||||
|
fromdate2=$(date -d "$fromdate" +%Y-%m-%d)
|
||||||
|
|
||||||
|
d2=`date +%Y-%m-%d`
|
||||||
|
|
||||||
echo "Last date run $fromdate"
|
TEMP=$(echo "update_missing.py" "$fromdate""_latest.mcl" "$d"".mcl" "$api_key" "$fromdate2" "$d2")
|
||||||
|
|
||||||
python2 "update_missing.py" "$fromdate""_latest.mcl" "$d"".mcl" $api_key $fromdate $d || error_exit "update_missing.py failed"
|
/usr/bin/python2 $TEMP
|
||||||
|
|
||||||
mv "$d"".mcl" "$d""_latest.mcl" || error_exit "cannot cp $d to latest"
|
#exit
|
||||||
mv "$fromdate""_latest.mcl" "archive/""$fromdate"".mcl" || error_exit "cannot mv to archive"
|
|
||||||
|
|
||||||
git add "$d""_latest.mcl" "archive/"
|
#mv "$d"".mcl" "$d""_latest.mcl" || error_exit "cannot cp $d to latest"
|
||||||
git commit -m "Updated $d"
|
#mv "$fromdate""_latest.mcl" "archive/""$fromdate"".mcl" || error_exit "cannot mv to archive"
|
||||||
|
|
||||||
|
#git add "$d""_latest.mcl" "archive/"
|
||||||
|
#git commit -m "Updated $d"
|
||||||
|
|
||||||
#git push origin master
|
#git push origin master
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user