From 12152aa09ff47dc5c5a627c27030855e254e58ad Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 25 Jun 2021 17:48:27 +0200 Subject: Update tools dependencies --- server/tools/peertube-auth.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'server/tools/peertube-auth.ts') diff --git a/server/tools/peertube-auth.ts b/server/tools/peertube-auth.ts index e54649002..1934e7986 100644 --- a/server/tools/peertube-auth.ts +++ b/server/tools/peertube-auth.ts @@ -3,7 +3,7 @@ import { registerTSPaths } from '../helpers/register-ts-paths' registerTSPaths() -import * as program from 'commander' +import { OptionValues, program } from 'commander' import * as prompt from 'prompt' import { getNetrc, getSettings, writeSettings } from './cli' import { isUserUsernameValid } from '../helpers/custom-validators/users' @@ -66,7 +66,7 @@ program .option('-U, --username ', 'Username') .option('-p, --password ', 'Password') .option('--default', 'add the entry as the new default') - .action((options: program.OptionValues) => { + .action((options: OptionValues) => { /* eslint-disable no-import-assign */ prompt.override = options prompt.start() -- cgit v1.2.3