From c3a4b90411c662c4fbb92f27b7b71eab016d6e31 Mon Sep 17 00:00:00 2001 From: Rhys Arkins <rhys@arkins.net> Date: Wed, 5 Sep 2018 11:03:06 +0200 Subject: [PATCH] chore: fix clean-cache paths --- bin/clean-cache.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/clean-cache.js b/bin/clean-cache.js index 592da959c7..fb8fee6090 100644 --- a/bin/clean-cache.js +++ b/bin/clean-cache.js @@ -2,6 +2,5 @@ const fs = require('fs-extra'); const os = require('os'); (async () => { - await fs.remove(os.tmpdir() + '/renovate-cache-changelog-v3'); - await fs.remove(os.tmpdir() + '/renovate-npm-cache'); + await fs.remove(os.tmpdir() + '/renovate-cache-v1'); })(); -- GitLab