Fixes from PR comments.
This commit is contained in:
parent
4621f2d830
commit
589d1442da
|
@ -73,7 +73,7 @@ exports.moveDirectory = (oldPath, newPath) => {
|
||||||
const files = fs.readdirSync(oldPath)
|
const files = fs.readdirSync(oldPath)
|
||||||
// check any file exists already
|
// check any file exists already
|
||||||
for (let file of files) {
|
for (let file of files) {
|
||||||
if (fs.existsSync(file)) {
|
if (fs.existsSync(join(newPath, file))) {
|
||||||
throw new Error(
|
throw new Error(
|
||||||
"Unable to remove top level directory - some skeleton files already exist."
|
"Unable to remove top level directory - some skeleton files already exist."
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue