bug(scaffolder): Ignore the .git folder

This commit is contained in:
blam
2021-01-08 15:45:19 +01:00
parent 733744b437
commit a7a055c1c2
@@ -39,7 +39,7 @@ export async function initRepoAndPush({
dir,
});
const paths = await globby(['./**', './**/.*'], {
const paths = await globby(['./**', './**/.*', '!.git'], {
cwd: dir,
gitignore: true,
dot: true,