blob: 28c250145758b2944d15689a605d6ccadf6c513e [file] [log] [blame]
#!/usr/bin/env node
'use strict';
/**
* Update our definition file.
*/
require('../lib/update').update(function updating(err, data) {
if (err) {
console.error('Update unsuccessfull due to reasons');
console.log(err.message);
console.log(err.stack);
return;
}
console.log('Successfully fetched and generated new parsers from the internets.');
});