Allow synchronizing to directory "."

This commit is contained in:
I-Al-Istannen 2021-04-14 20:25:25 +02:00
parent 80ae5ddfaa
commit 7cc40595dc

View File

@ -121,7 +121,7 @@ def main() -> None:
# files may not escape the pferd_root with relative paths # files may not escape the pferd_root with relative paths
# note: Path(Path.cwd, Path(folder)) == Path(folder) if it is an absolute path # note: Path(Path.cwd, Path(folder)) == Path(folder) if it is an absolute path
pferd_root = Path(Path.cwd(), Path(folder)).parent pferd_root = Path(Path.cwd(), Path(folder)).parent
target = folder.name target = folder.resolve().name
pferd = Pferd(pferd_root, test_run=args.test_run) pferd = Pferd(pferd_root, test_run=args.test_run)
def dir_filter(_: Path, element: IliasElementType) -> bool: def dir_filter(_: Path, element: IliasElementType) -> bool: