From dd58ff6534819ba483afdb3482f5d85667406ba1 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sat, 26 Aug 2017 05:21:20 -0400 Subject: [PATCH] fix: add missing argument to backup subcommand help output --- README.md | 2 +- commands | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 372cbe3..bcaf356 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ sudo dokku plugin:install https://github.com/dokku/dokku-mongo.git mongo ## commands ``` -mongo:backup [--use-iam] Create a backup of the mongo service to an existing s3 bucket +mongo:backup (--use-iam) Create a backup of the mongo service to an existing s3 bucket mongo:backup-auth () () () Sets up authentication for backups on the mongo service mongo:backup-deauth Removes backup authentication for the mongo service mongo:backup-schedule Schedules a backup of the mongo service diff --git a/commands b/commands index 8a4d00f..f82c824 100755 --- a/commands +++ b/commands @@ -108,7 +108,7 @@ case "$1" in # shellcheck disable=SC2034 declare desc="return $PLUGIN_COMMAND_PREFIX plugin help content" cat< , Create a backup of the $PLUGIN_COMMAND_PREFIX service to an existing s3 bucket + $PLUGIN_COMMAND_PREFIX:backup (--use-iam), Create a backup of the $PLUGIN_COMMAND_PREFIX service to an existing s3 bucket $PLUGIN_COMMAND_PREFIX:backup-auth () () (), Sets up authentication for backups on the $PLUGIN_COMMAND_PREFIX service $PLUGIN_COMMAND_PREFIX:backup-deauth , Removes backup authentication for the $PLUGIN_COMMAND_PREFIX service $PLUGIN_COMMAND_PREFIX:backup-schedule , Schedules a backup of the $PLUGIN_COMMAND_PREFIX service