Support some undocumented variants of Path template arguments

This commit is contained in:
mtkennerly 2023-12-09 15:31:02 +08:00
parent c945aadb3e
commit 11e9228262
No known key found for this signature in database
GPG key ID: E764BE00BE6E6408
2 changed files with 22 additions and 0 deletions

View file

@ -91406,6 +91406,10 @@ Cats are Liquid:
- when: - when:
- os: windows - os: windows
store: steam store: steam
registry:
HKEY_CURRENT_USER/SOFTWARE/LastQuarter Studios/Cats are Liquid:
tags:
- config
steam: steam:
id: 498330 id: 498330
Cats are Liquid - A Better Place: Cats are Liquid - A Better Place:

View file

@ -795,6 +795,15 @@ static MAPPED_PATHS: Lazy<HashMap<&'static str, MappedPath>> = Lazy::new(|| {
..Default::default() ..Default::default()
}, },
), ),
(
"hkey_current_user",
MappedPath {
manifest: "HKEY_CURRENT_USER",
os: Some(Os::Windows),
kind: Some(PathKind::Registry),
..Default::default()
},
),
( (
"hklm", "hklm",
MappedPath { MappedPath {
@ -804,6 +813,15 @@ static MAPPED_PATHS: Lazy<HashMap<&'static str, MappedPath>> = Lazy::new(|| {
..Default::default() ..Default::default()
}, },
), ),
(
"hkey_local_machine",
MappedPath {
manifest: "HKEY_LOCAL_MACHINE",
os: Some(Os::Windows),
kind: Some(PathKind::Registry),
..Default::default()
},
),
( (
"wow64", "wow64",
MappedPath { MappedPath {