make tense in command descriptions more consistent

This commit is contained in:
Benjamin Atkin
2021-05-11 16:50:12 -04:00
committed by Jose Diaz-Gonzalez
parent 1b37774e05
commit 952036bbaa
10 changed files with 68 additions and 68 deletions

View File

@@ -15,7 +15,7 @@ service-backup-schedule-cmd() {
#A service, service to run command against
#A schedule, a cron schedule to run backups on
#A bucket-name, name of the s3 bucket to upload backups to
declare desc="schedules a backup of the $PLUGIN_SERVICE service"
declare desc="schedule a backup of the $PLUGIN_SERVICE service"
local cmd="$PLUGIN_COMMAND_PREFIX:backup-schedule" argv=("$@")
[[ ${argv[0]} == "$cmd" ]] && shift 1
declare SERVICE="$1" SCHEDULE="$2" BUCKET_NAME="$3" USE_IAM_OPTIONAL_FLAG="$4"