Skip to content

Commit

Permalink
cleaner error handling & version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
cupcakearmy committed Dec 22, 2019
1 parent 22d93f0 commit 8fdf518
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/autorestic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,22 @@ export const { _: commands, ...flags } = minimist(process.argv.slice(2), {
string: ['l', 'b'],
})

export const VERSION = '0.11'
export const VERSION = '0.12'
export const INSTALL_DIR = '/usr/local/bin'
export const VERBOSE = flags.verbose

export const config = init()


function main() {
async function main() {
if (commands.length < 1) return help()

const command: string = commands[0]
const args: string[] = commands.slice(1)
;(handlers[command] || error)(args, flags)

const fn = handlers[command] || error
await fn(args, flags)
}


main()
main().catch((e: Error) => console.error(e.message))

0 comments on commit 8fdf518

Please sign in to comment.