Skip to content
Snippets Groups Projects
Commit c89929d3 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

fix: rename changelog cache file

parent eb67d7e3
No related merge requests found
......@@ -2,6 +2,6 @@ const fs = require('fs-extra');
const os = require('os');
(async () => {
await fs.remove(os.tmpdir() + '/renovate-changelog-cache');
await fs.remove(os.tmpdir() + '/renovate-cache-changelog');
await fs.remove(os.tmpdir() + '/renovate-npm-cache');
})();
......@@ -9,7 +9,7 @@ module.exports = {
function getCache({ depName, fromVersion, newVersion }) {
const tmpdir = process.env.RENOVATE_TMPDIR || os.tmpdir();
const cachePath = tmpdir + '/renovate-commits-cache';
const cachePath = tmpdir + '/renovate-cache-changelog';
const cacheKey = `${depName}-${fromVersion}-${newVersion}`;
return [cachePath, cacheKey];
}
......
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