Browse Source

Add base dir to prune storage script

Chocobozzz 5 years ago
parent
commit
be9727bd32
1 changed files with 2 additions and 1 deletions
  1. 2 1
      scripts/prune-storage.ts

+ 2 - 1
scripts/prune-storage.ts

@@ -37,7 +37,8 @@ async function run () {
     toDelete = toDelete.concat(await pruneDirectory(directory, false))
   }
 
-  toDelete = toDelete.concat(await readdir(CONFIG.STORAGE.TMP_DIR))
+  const tmpFiles = await readdir(CONFIG.STORAGE.TMP_DIR)
+  toDelete = toDelete.concat(tmpFiles.map(t => join(CONFIG.STORAGE.TMP_DIR, t)))
 
   if (toDelete.length === 0) {
     console.log('No files to delete.')