trustwallet-assets/script/entrypoint/fix-sanity.ts
Adam R ec1fe7f6ee
[internal] Script restructuring/refactoring (#4070)
* Make non-mandatory action interface elements optional.

* Remove one unused import

* Scripts main renamed to entrypoint.

* Script common rename to generic

* Move generic scripts from action to generic.

* Move chain-specific scripts to blockchain.

Co-authored-by: Catenocrypt <catenocrypt@users.noreply.github.com>
2020-09-23 15:47:24 +02:00

13 lines
230 B
TypeScript

import { sanityFixAll } from "../generic/update-all";
export async function main(): Promise<void> {
try {
await sanityFixAll();
} catch(err) {
console.error(err);
process.exit(1);
}
}
main();