1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-26 09:47:58 +00:00

Merge pull request #6884 from a1346054/fixes

Fix typos and shellcheck warnings
This commit is contained in:
TW 2022-07-23 21:44:27 +02:00 committed by GitHub
commit a75b260fef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 7 additions and 7 deletions

View file

@ -95,7 +95,7 @@ The client needs to initialize the `pictures` repository like this:
borg init backup@backup01.srv.local:pictures
Or with the full path (should actually never be used, as only for demonstrational purposes).
Or with the full path (should actually never be used, as only for demonstration purposes).
The server should automatically change the current working directory to the `<client fqdn>` folder.
::

View file

@ -458,7 +458,7 @@ Archive Differencing
++++++++++++++++++++
Each archive difference item (file contents, user/group/mode) output by :ref:`borg_diff` is represented by an *ItemDiff* object.
The propertiese of an *ItemDiff* object are:
The properties of an *ItemDiff* object are:
path:
The filename/path of the *Item* (file, directory, symlink).

View file

@ -17,4 +17,4 @@ python setup.py sdist
D=dist/borgbackup-$R.tar.gz
$GPG --detach-sign --local-user "Thomas Waldmann" --armor --output $D.asc $D
$GPG --detach-sign --local-user "Thomas Waldmann" --armor --output "$D.asc" "$D"

View file

@ -14,7 +14,7 @@ else
fi
for file in dist/borg-*; do
$GPG --local-user "Thomas Waldmann" --armor --detach-sign --output $file.asc $file
$GPG --local-user "Thomas Waldmann" --armor --detach-sign --output "$file.asc" "$file"
done
touch -t $D dist/*
touch -t "$D" dist/*

View file

@ -15,4 +15,4 @@ fi
D=dist/borgbackup-$R.tar.gz
twine upload $D.asc $D
twine upload "$D.asc" "$D"

View file

@ -2653,7 +2653,7 @@ def do_break_lock(self, args, repository):
The first matching pattern is used, so if an include pattern matches
before an exclude pattern, the file is backed up. Note that a no-recurse
exclude stops examination of subdirectories so that potential includes
will not match - use normal exludes for such use cases.
will not match - use normal excludes for such use cases.
**Tip: You can easily test your patterns with --dry-run and --list**::