Filter out some more wildcard paths

This commit is contained in:
mtkennerly 2024-04-22 08:59:06 -04:00
parent 6bf79b1fec
commit e097ad230c
No known key found for this signature in database
GPG key ID: E764BE00BE6E6408
2 changed files with 1 additions and 16 deletions

View file

@ -74423,10 +74423,6 @@ Blade of Acrimony:
id: 932450
Blade of Arena:
files:
"<winLocalAppData>/<storeUserId>/BOAWorld/Saved/SaveGames/*.sav":
when:
- os: windows
store: steam
"<winLocalAppData>/BOAWorld/Saved/SaveGames/*.sav":
when:
- os: windows
@ -325604,11 +325600,6 @@ Kandagawa Jet Girls:
- save
when:
- os: windows
"<winLocalAppData>/<storeUserId>/28000":
tags:
- save
when:
- os: windows
gog:
id: 2057392130
id:
@ -670275,12 +670266,6 @@ Victoria 3:
- save
when:
- os: linux
"<root>/<storeUserId>/529340/remote/save games":
tags:
- save
when:
- os: windows
store: steam
"<winDocuments>/Paradox Interactive/Victoria 3":
tags:
- config

View file

@ -60,7 +60,7 @@ fn too_broad(path: &str) -> bool {
}
for item in placeholder::AVOID_WILDCARDS {
if path.starts_with(&format!("{item}/*")) {
if path.starts_with(&format!("{item}/*")) || path.starts_with(&format!("{item}/{STORE_USER_ID}")) {
return true;
}
}