From 82f6942ff115c6ce66ca8af79fbb93d1ac356dd9 Mon Sep 17 00:00:00 2001 From: cupcakearmy Date: Sun, 17 May 2020 09:35:18 +0200 Subject: [PATCH] remove async --- src/autorestic.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/autorestic.ts b/src/autorestic.ts index aa8ba67..3046745 100644 --- a/src/autorestic.ts +++ b/src/autorestic.ts @@ -34,11 +34,11 @@ export let config: Config async function main() { - config = await init() - + config = init() + // For dev // return await handlers['check']([], { ...flags, all: true }) - + if (commands.length < 1 || commands[0] === 'help') return help() const command: string = commands[0]