TW
TW
see also: #6584
Likely this is doable more easily / cleanly after we dropped support for old repos.
Guess this should just "add up" / use both. Patterns and excludes IIRC behave that way, one can give them in pattern/exclude files as well as as cli params and...
Added `print(args.paths)` in `do_create`: ``` $ borg2 create --repo /tmp/b2 --pattern="R 1" --pattern="R 2" archive 3 4 --pattern="R 5" --pattern="R 6" ['3', '4', '5', '6'] ``` So, it's not completely...
Maybe something to add there?: https://borgbackup.readthedocs.io/en/stable/man_intro.html#positional-arguments-and-options-order-matters
maybe we are lucky: https://docs.python.org/3/library/argparse.html#action see "extend" there (new since python 3.8). the default is "store" and that seems to start from scratch (ignoring any existing list) when processing the...
https://borgbackup.readthedocs.io/en/1.2.2/installation.html#from-source
BTW, do not confuse the `pkgconfig` python package and the `pkg-config` commandline tool (which is required and used by the python package).
``` apt install pkg-config ```
No, that is not a python software package, but ubuntu provides it as a `.deb` package. a virtual env is only for python software. pkg-config is a tool which is...