Fixes from PR comments.

This commit is contained in:
mike12345567 2022-09-14 10:58:01 +01:00
parent 4621f2d830
commit 589d1442da
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ exports.moveDirectory = (oldPath, newPath) => {
const files = fs.readdirSync(oldPath)
// check any file exists already
for (let file of files) {
if (fs.existsSync(file)) {
if (fs.existsSync(join(newPath, file))) {
throw new Error(
"Unable to remove top level directory - some skeleton files already exist."
)