Skip to content

Commit

Permalink
avoid copying removed files
Browse files Browse the repository at this point in the history
  • Loading branch information
jchip committed Feb 14, 2020
1 parent 43234d4 commit 89df3d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/create-app/src/create.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ async function create() {

Fs.writeFileSync(Path.resolve("package.json"), `${JSON.stringify(pkg, null, 2)}\n`);
shcmd.cp(Path.join(srcDir, "xclap.js"), process.cwd());
shcmd.cp("-R", Path.join(srcDir, "archetype"), process.cwd());
// shcmd.cp("-R", Path.join(srcDir, "archetype"), process.cwd());
shcmd.cp("-R", Path.join(srcDir, "src"), process.cwd());
shcmd.cp("-R", Path.join(srcDir, "static"), process.cwd());
shcmd.cp("-R", Path.join(srcDir, "_gitignore"), Path.resolve(".gitignore"));
Expand Down

0 comments on commit 89df3d6

Please sign in to comment.