Fix removing directory content
This commit is contained in:
parent
21d70a7302
commit
c74cd9feab
1 changed files with 2 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
||||||
import { ensureDir, readdir, remove } from 'fs-extra'
|
import { ensureDir, readdir, remove } from 'fs-extra'
|
||||||
import passwordGenerator from 'password-generator'
|
import passwordGenerator from 'password-generator'
|
||||||
|
import { join } from 'path'
|
||||||
import { UserRole } from '@shared/models'
|
import { UserRole } from '@shared/models'
|
||||||
import { logger } from '../helpers/logger'
|
import { logger } from '../helpers/logger'
|
||||||
import { buildUser, createApplicationActor, createUserAccountAndChannelAndPlaylist } from '../lib/user'
|
import { buildUser, createApplicationActor, createUserAccountAndChannelAndPlaylist } from '../lib/user'
|
||||||
|
@ -67,7 +68,7 @@ async function removeDirectoryOrContent (dir: string) {
|
||||||
const files = await readdir(dir)
|
const files = await readdir(dir)
|
||||||
|
|
||||||
for (const file of files) {
|
for (const file of files) {
|
||||||
await remove(file)
|
await remove(join(dir, file))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue