correct link

This commit is contained in:
cupcakearmy 2020-11-07 12:55:16 +01:00
parent b025aeeeab
commit b690c1c3a9
No known key found for this signature in database
GPG Key ID: D28129AE5654D9D9
1 changed files with 7 additions and 1 deletions

View File

@ -31,12 +31,18 @@ const enqueue = (fn: Function) => (cmd: any) => {
}
program.storeOptionsAsProperties()
program.name('autorestic').version(VERSION)
program.name('autorestic').description('Easy Restic CLI Utility').version(VERSION)
program.option('-c, --config <path>', 'Config file').option('-v, --verbose', 'Verbosity', false)
program.command('info').action(enqueue(info))
program.on('--help', () => {
console.log('')
console.log(`${'Docs:'.yellow}\t\thttps://autorestic.vercel.app`)
console.log(`${'Examples:'.yellow}\thttps://autorestic.vercel.app/examples`)
})
program
.command('check')
.description('Checks and initializes backend as needed')