mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
Add base dir to prune storage script
This commit is contained in:
@@ -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.')
|
||||
|
||||
Reference in New Issue
Block a user