1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-10 13:40:06 +00:00

PM-919 remove formatting errors

This commit is contained in:
voommen-livefront
2025-03-05 08:25:50 -06:00
parent 07f119d003
commit e737731270
2 changed files with 2 additions and 2 deletions

View File

@@ -21,7 +21,6 @@ import { SendResponse } from "../models/send.response";
import { SendReceiveCommand } from "./receive.command";
export class SendGetCommand extends DownloadCommand {
constructor(
private sendService: SendService,

View File

@@ -163,7 +163,7 @@ export class SendProgram extends BaseProgram {
return new Command("get")
.arguments("<id>")
.description("Get Sends owned by you.")
.option("--file", "Specifies to return the file content of a Send")
.option("--file", "Specifies to return the file content of a Send", true)
.option("--password <password>", "Password needed to access the Send.")
.option("--passwordenv <passwordenv>", "Environment variable storing the Send's password")
.option(
@@ -172,6 +172,7 @@ export class SendProgram extends BaseProgram {
)
.option("--obj", "Return the Send's json object rather than the Send's content")
.option("--output <location>", "Specify a file path to save a File-type Send to")
.option("--raw", "Return the raw content of a Send", true)
.option("--text", "Specifies to return the text content of a Send")
.on("--help", () => {
writeLn("");