From 27201354caa5b29c0a2f1b945925514ce65b3bad Mon Sep 17 00:00:00 2001 From: Sam Therapy Date: Wed, 5 Jan 2022 17:55:34 -0600 Subject: [PATCH] Add defaults to -h output Signed-off-by: Sam Therapy --- src/bot.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bot.ts b/src/bot.ts index 03be6fc..ef5d235 100644 --- a/src/bot.ts +++ b/src/bot.ts @@ -24,7 +24,7 @@ const optionDefinitions = [ name: "config", type: String, alias: "c", - description: "Path to the configuration file.", + description: "Path to the configuration file. (default: ./config.json)", defaultValue: "./config.json", typeLabel: "" }, @@ -32,7 +32,7 @@ const optionDefinitions = [ name: "sfw_directory", type: String, alias: "s", - description: "The directory of (SFW) images for the bot to post.", + description: "The directory of (SFW) images for the bot to post. (default: ./sfw)", defaultValue: "./images/sfw", typeLabel: "" }, @@ -40,7 +40,7 @@ const optionDefinitions = [ name: "nsfw_directory", type: String, alias: "n", - description: "The directory of (NSFW) images for the bot to post. If it chooses these, they will be marked sensitive.", + description: "The directory of (NSFW) images for the bot to post. If it chooses these, they will be marked sensitive. (default: ./nsfw)", defaultValue: "./images/nsfw", typeLabel: "" },