mirror of
https://github.com/borgbackup/borg.git
synced 2025-02-23 14:41:43 +00:00
Fixed link to cachedir spec in fs helper to address #4140
This commit is contained in:
parent
0c99aee724
commit
19c269cdcf
1 changed files with 2 additions and 2 deletions
|
@ -66,7 +66,7 @@ def get_cache_dir():
|
|||
fd.write(textwrap.dedent("""
|
||||
# This file is a cache directory tag created by Borg.
|
||||
# For information about cache directory tags, see:
|
||||
# http://www.brynosaurus.com/cachedir/
|
||||
# http://www.bford.info/cachedir/spec.html
|
||||
""").encode('ascii'))
|
||||
return cache_dir
|
||||
|
||||
|
@ -85,7 +85,7 @@ def dir_is_cachedir(path):
|
|||
"""Determines whether the specified path is a cache directory (and
|
||||
therefore should potentially be excluded from the backup) according to
|
||||
the CACHEDIR.TAG protocol
|
||||
(http://www.brynosaurus.com/cachedir/spec.html).
|
||||
(http://www.bford.info/cachedir/spec.html).
|
||||
"""
|
||||
|
||||
tag_path = os.path.join(path, CACHE_TAG_NAME)
|
||||
|
|
Loading…
Reference in a new issue