You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo "downloading schema from {$schema->schema}\n";
$new_schema = file_get_contents($schema->schema);
if ($old_schema == $new_schema) {
echo "no update needed\n";
} else {
echo "schema changed - updating local file\n";
file_put_contents($filename, $new_schema);
file_put_contents($base_filename.'CHANGELOG', "\n\nChanges to {$schema->id} schema\n".date('c')."\n* check the git diff and summarize the spec changes here\n* \n\n", FILE_APPEND);
if ($schema->id == 'registry') {
echo "registry was updated, re-running update to fetch latest files from registry\n\n";