We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8783684 commit 4fb6334Copy full SHA for 4fb6334
1 file changed
fontes/interface-linha-comando/novo/index.ts
@@ -79,7 +79,7 @@ export async function gerarRepositorioGit(
79
) {
80
if (inicializarRepositorioGit) {
81
execSync('git init', { cwd: diretorioProjeto });
82
- execSync('git config --global --add safe.directory ' + diretorioProjeto);
+ execSync(`git config --global --add safe.directory "${diretorioProjeto}"`);
83
84
const conteudoGitIgnore = 'node_modules/\ndist/\nbuild/\n.env\n.env.local\n.env.development\n.env.production\ncoverage/\n*.log\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\n.DS_Store\nThumbs.db';
85
await sistemaArquivos.promises.writeFile(
0 commit comments