mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 02:39:40 +00:00
Don't ignore scripts in comparison
This commit is contained in:
parent
8536bfa688
commit
46e30950b7
2
sync.py
2
sync.py
|
@ -178,7 +178,7 @@ def exclude_fun(diff: FileDiff) -> bool:
|
|||
lambda d: Path("home/.config/topgrade.toml") == d.rel_dot_file,
|
||||
lambda d: Path("home/.config/newsboat") in d.rel_dot_file.parents,
|
||||
lambda d: Path("home/.cache/zsh/history") == d.rel_dot_file and d.status is DiffStatus.CONTENT_DIFFERS,
|
||||
lambda d: Path("home/.local/scripts") in d.rel_dot_file.parents, # Temporary
|
||||
lambda d: Path("home/.local/scripts") in d.rel_dot_file.parents,
|
||||
lambda d: Path("root") in d.rel_dot_file.parents, # Temporary
|
||||
]
|
||||
|
||||
|
|
Loading…
Reference in a new issue