Skip to content
Snippets Groups Projects
Unverified Commit 8dee195d authored by Michael Kriese's avatar Michael Kriese Committed by GitHub
Browse files

fix: wrong config access (#14164)

parent 1f28cfd2
No related branches found
No related tags found
No related merge requests found
...@@ -64,7 +64,7 @@ export async function renovateRepository( ...@@ -64,7 +64,7 @@ export async function renovateRepository(
const errorRes = await handleError(config, err); const errorRes = await handleError(config, err);
repoResult = processResult(config, errorRes); repoResult = processResult(config, errorRes);
} }
if (localDir && !config.persistRepoData) { if (localDir && !repoConfig.persistRepoData) {
try { try {
await deleteLocalFile('.'); await deleteLocalFile('.');
} catch (err) /* istanbul ignore if */ { } catch (err) /* istanbul ignore if */ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment