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 ca4f527 commit 2018e6cCopy full SHA for 2018e6c
templates/cli/lib/commands/init.js.twig
@@ -97,7 +97,7 @@ const initFunction = async () => {
97
childProcess.execSync(gitPullCommands, { stdio: 'pipe', cwd: functionDir });
98
99
fs.rmSync(path.join(functionDir, ".git"), { recursive: true });
100
- const copyRecursiveSync = (src, dest) => {
+ const copyRecursiveSync = (src, dest) => {
101
let exists = fs.existsSync(src);
102
let stats = exists && fs.statSync(src);
103
let isDirectory = exists && stats.isDirectory();
0 commit comments