From 4498671233c37ebafa9a887b0ed87abb8f270905 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Wed, 9 Feb 2022 11:08:02 -0800 Subject: [PATCH] Remove references to removed long-deprecated options (#394). --- borgmatic/config/schema.yaml | 10 +++++----- scripts/find-unsupported-borg-options | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/borgmatic/config/schema.yaml b/borgmatic/config/schema.yaml index 684070f18..f637325d1 100644 --- a/borgmatic/config/schema.yaml +++ b/borgmatic/config/schema.yaml @@ -347,27 +347,27 @@ properties: type: string description: | Extra command-line options to pass to "borg init". - example: "--make-parent-dirs" + example: "--extra-option" prune: type: string description: | Extra command-line options to pass to "borg prune". - example: "--save-space" + example: "--extra-option" compact: type: string description: | Extra command-line options to pass to "borg compact". - example: "--save-space" + example: "--extra-option" create: type: string description: | Extra command-line options to pass to "borg create". - example: "--no-files-cache" + example: "--extra-option" check: type: string description: | Extra command-line options to pass to "borg check". - example: "--save-space" + example: "--extra-option" description: | Additional options to pass directly to particular Borg commands, handy for Borg options that borgmatic does not yet diff --git a/scripts/find-unsupported-borg-options b/scripts/find-unsupported-borg-options index 49583590f..f0ba00ba8 100755 --- a/scripts/find-unsupported-borg-options +++ b/scripts/find-unsupported-borg-options @@ -54,7 +54,7 @@ for sub_command in prune create check list info; do | grep -v '^--format' \ | grep -v '^--glob-archives' \ | grep -v '^--last' \ - | grep -v '^--list-format' \ + | grep -v '^--format' \ | grep -v '^--patterns-from' \ | grep -v '^--prefix' \ | grep -v '^--short' \