From ebc54d7b63d848e053cd30b9d321b540341caff4 Mon Sep 17 00:00:00 2001 From: Vishal Anarse Date: Mon, 6 Nov 2023 17:52:17 +0530 Subject: [PATCH] Addressed comments Signed-off-by: Vishal Anarse --- cmd/database/database_backup.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/database/database_backup.go b/cmd/database/database_backup.go index 70bda3a9..a2ee72ef 100644 --- a/cmd/database/database_backup.go +++ b/cmd/database/database_backup.go @@ -33,7 +33,7 @@ func init() { dbBackupCreateCmd.Flags().StringVarP(&name, "name", "n", "", "name of the database backup") dbBackupCreateCmd.Flags().StringVarP(&schedule, "schedule", "s", "", "schedule of the database backup in the form of cronjob") dbBackupCreateCmd.Flags().IntVarP(&count, "count", "c", 1, "number of backups to keep") - dbBackupCreateCmd.Flags().StringVarP(&backupType, "type", "t", "scheduled", "set the type of database backup manul/scheduled") + dbBackupCreateCmd.Flags().StringVarP(&backupType, "type", "t", "scheduled", "set the type of database backup manual/scheduled") dbBackupCreateCmd.MarkFlagRequired("name")