update.sh now also commits dn42-rfc8416-export.json if previously updated

This commit is contained in:
netravnen 2018-12-14 15:27:50 +00:00
parent a62585490f
commit fe996e6727

View file

@ -6,5 +6,9 @@ ISO_DATE=$(date -u +"%Y-%m-%dT%H:%M:%SZ")
git add dn42-rpki-export.json git add dn42-rpki-export.json
git commit dn42-rpki-export.json -m "Updated dn42-rpki-export.json - $ISO_DATE" git commit dn42-rpki-export.json -m "Updated dn42-rpki-export.json - $ISO_DATE"
# Commit latest version of dn42-rfc8416-export.json
git add dn42-rfc8416-export.json
git commit dn42-rfc8416-export.json -m "Updated dn42-rfc8416-export.json - $ISO_DATE"
# Push repository to every remote configured # Push repository to every remote configured
for REMOTE in $(git remote | paste -sd " " -) ; do git ps $REMOTE master ; done for REMOTE in $(git remote | paste -sd " " -) ; do git ps $REMOTE master ; done