trustwallet-assets/script/main/fix-sanity.ts

13 lines
233 B
TypeScript
Raw Normal View History

import { sanityFixAll, consistencyFixAll } from "../action/update-all";
export async function main() {
try {
await sanityFixAll();
} catch(err) {
console.error(err);
process.exit(1);
}
}
main();