mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +01:00
parent
3f1d3c7680
commit
f5426469bb
2
jslib
2
jslib
@ -1 +1 @@
|
||||
Subproject commit 44b86f5dd028271059b70a00d7878fbb1a06023f
|
||||
Subproject commit b816ddddff96b53a77620b8b31d6ca699f0a8195
|
@ -15,7 +15,7 @@ export class ExportCommand {
|
||||
constructor(private cryptoService: CryptoService, private exportService: ExportService) { }
|
||||
|
||||
async run(password: string, cmd: program.Command): Promise<Response> {
|
||||
const canInteract = process.stdout.isTTY && process.env.BW_NOINTERACTION !== 'true';
|
||||
const canInteract = process.env.BW_NOINTERACTION !== 'true';
|
||||
if ((password == null || password === '') && canInteract) {
|
||||
const answer: inquirer.Answers = await inquirer.createPromptModule({ output: process.stderr })({
|
||||
type: 'password',
|
||||
|
@ -15,7 +15,7 @@ export class UnlockCommand {
|
||||
private cryptoFunctionService: CryptoFunctionService) { }
|
||||
|
||||
async run(password: string, cmd: program.Command) {
|
||||
const canInteract = process.stdout.isTTY && process.env.BW_NOINTERACTION !== 'true';
|
||||
const canInteract = process.env.BW_NOINTERACTION !== 'true';
|
||||
if ((password == null || password === '') && canInteract) {
|
||||
const answer: inquirer.Answers = await inquirer.createPromptModule({ output: process.stderr })({
|
||||
type: 'password',
|
||||
|
@ -645,7 +645,7 @@ export class Program extends BaseProgram {
|
||||
await this.exitIfNotAuthed();
|
||||
const hasKey = await this.main.cryptoService.hasKey();
|
||||
if (!hasKey) {
|
||||
const canInteract = process.stdout.isTTY && process.env.BW_NOINTERACTION !== 'true';
|
||||
const canInteract = process.env.BW_NOINTERACTION !== 'true';
|
||||
if (canInteract) {
|
||||
const command = new UnlockCommand(this.main.cryptoService, this.main.userService,
|
||||
this.main.cryptoFunctionService);
|
||||
|
Loading…
Reference in New Issue
Block a user