From ce637d318d8ddd15255125a84eec2a6a4b204430 Mon Sep 17 00:00:00 2001 From: Asher Date: Mon, 30 Mar 2020 14:23:19 -0500 Subject: [PATCH] Add descriptions to SSH flags --- src/node/cli.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/node/cli.ts b/src/node/cli.ts index 67a77f30..23006147 100644 --- a/src/node/cli.ts +++ b/src/node/cli.ts @@ -98,8 +98,8 @@ const options: Options> = { version: { type: "boolean", short: "v", description: "Display version information." }, _: { type: "string[]" }, - "disable-ssh": { type: "boolean" }, - "ssh-host-key": { type: "string", path: true }, + "disable-ssh": { type: "boolean", description: "Disable the SSH server." }, + "ssh-host-key": { type: "string", path: true, description: "SSH server host key." }, "user-data-dir": { type: "string", path: true, description: "Path to the user data directory." }, "extensions-dir": { type: "string", path: true, description: "Path to the extensions directory." },