diff --git a/src/autorestic.ts b/src/autorestic.ts index a073416..b4da0b9 100644 --- a/src/autorestic.ts +++ b/src/autorestic.ts @@ -25,7 +25,8 @@ export const { _: commands, ...flags } = minimist(process.argv.slice(2), { string: ['l', 'b'], }) -export const DEFAULT_CONFIG = 'config.yml' +export const VERSION = '0.1' +export const DEFAULT_CONFIG = '~/.autorestic.yml' export const INSTALL_DIR = '/usr/local/bin' export const CONFIG_FILE: string = resolve(flags.config || DEFAULT_CONFIG) export const VERBOSE = flags.verbose diff --git a/src/handlers.ts b/src/handlers.ts index d2c8b18..ef1b407 100644 --- a/src/handlers.ts +++ b/src/handlers.ts @@ -4,7 +4,7 @@ import { createWriteStream, unlinkSync } from 'fs' import { arch, platform, tmpdir } from 'os' import { join, resolve } from 'path' -import { config, INSTALL_DIR } from './autorestic' +import { config, INSTALL_DIR, CONFIG_FILE } from './autorestic' import { checkAndConfigureBackends, getEnvFromBackend } from './backend' import { backupAll } from './backup' import { Backends, Flags, Locations } from './types' @@ -170,7 +170,7 @@ export const help = () => { console.log('\nAutorestic'.blue + ' - Easy Restic CLI Utility' + '\n' + '\nOptions:'.yellow - + '\n -c, --config [default=config.yml] Specify config file' + + `\n -c, --config Specify config file. Default: ${CONFIG_FILE}` + '\n' + '\nCommands:'.yellow + '\n check [-b, --backend] [-a, --all] Check backends'