X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=scripts%2Fprune-storage.ts;h=c9e4dbd4b8094bead529388148c9ab0dda73a0a1;hb=f58094b2577afbd26bb2e74768938bcdd9890c16;hp=f2be1b8ee98082ccd65d66b61a78db98ed53347f;hpb=3ba862daecd3429d4438f0da6c4fa04e9631c0ae;p=github%2FChocobozzz%2FPeerTube.git diff --git a/scripts/prune-storage.ts b/scripts/prune-storage.ts index f2be1b8ee..c9e4dbd4b 100755 --- a/scripts/prune-storage.ts +++ b/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.')