diff --git a/rfc8416.php b/rfc8416.php index 7a40353..c058ca6 100755 --- a/rfc8416.php +++ b/rfc8416.php @@ -260,7 +260,7 @@ foreach ($raw_array as $sub_array) $json = json_encode($roas, JSON_UNESCAPED_SLASHES|JSON_PRETTY_PRINT); // Write JSON to file -$fp = fopen('dn42-rfc8416-export.json', 'w'); +$fp = fopen('roa/export_rfc8416_dn42.json', 'w'); fwrite($fp, $json); fclose($fp); diff --git a/update.sh b/update.sh index dd6ebe5..0f2cd75 100755 --- a/update.sh +++ b/update.sh @@ -6,9 +6,5 @@ ISO_DATE=$(date -u +"%Y-%m-%dT%H:%M:%SZ") git add roa/* git commit roa/* -m "Updated ROA files - $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 for REMOTE in $(git remote | paste -sd " " -) ; do git ps $REMOTE master ; done