Skip to content

Commit 0909b69

Browse files
authored
Merge pull request #1234 from quarto-dev/windows-registry-r
Correctly find R in registry when first key searched is not found
2 parents 891dca7 + 33a6dbd commit 0909b69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/registry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export async function registryReadString(
1818
// if an array is passed then call each one in turn
1919
if (Array.isArray(root)) {
2020
for (const r of root) {
21-
const val = registryReadString(r, key, value);
21+
const val = await registryReadString(r, key, value);
2222
if (val !== undefined) {
2323
return val;
2424
}

0 commit comments

Comments
 (0)