1
0
Fork 0

Readded update.sh

o Now includes commit to dn42-rpki-export.json
This commit is contained in:
netravnen 2018-12-10 17:33:34 +01:00 committed by Christoffer
parent 7df86efd21
commit 199881dc79
1 changed files with 10 additions and 0 deletions

10
update.sh Executable file
View File

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