Commit 3509dcd1 authored by Johann Hubert Sonntagbauer's avatar Johann Hubert Sonntagbauer Committed by Dan Abramov
Browse files

fix project cleanup on windows (#1675)

parent c51a6119
Showing with 1 addition and 0 deletions
+1 -0
......@@ -212,6 +212,7 @@ function run(root, appName, version, verbose, originalDirectory, template) {
if (!remainingFiles.length) {
// Delete target folder if empty
console.log('Deleting', chalk.cyan(appName + '/'), 'from', chalk.cyan(path.resolve(root, '..')));
process.chdir(path.resolve(root, '..'));
fs.removeSync(path.join(root));
}
console.log('Done.');
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment