mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
294d8bcb5d
* rename to sanityFix * Infra for consistency checks and Fixes. * Whitelist check moved to consistency check only. Co-authored-by: Catenocrypt <catenocrypt@users.noreply.github.com>
13 lines
233 B
TypeScript
13 lines
233 B
TypeScript
import { sanityFixAll, consistencyFixAll } from "../action/update-all";
|
|
|
|
export async function main() {
|
|
try {
|
|
await sanityFixAll();
|
|
} catch(err) {
|
|
console.error(err);
|
|
process.exit(1);
|
|
}
|
|
}
|
|
|
|
main();
|