Skip to content

Commit 2018e6c

Browse files
Update templates/cli/lib/commands/init.js.twig
Co-authored-by: Matej Bačo <[email protected]>
1 parent ca4f527 commit 2018e6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/cli/lib/commands/init.js.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ const initFunction = async () => {
9797
childProcess.execSync(gitPullCommands, { stdio: 'pipe', cwd: functionDir });
9898

9999
fs.rmSync(path.join(functionDir, ".git"), { recursive: true });
100-
const copyRecursiveSync = (src, dest) => {
100+
const copyRecursiveSync = (src, dest) => {
101101
let exists = fs.existsSync(src);
102102
let stats = exists && fs.statSync(src);
103103
let isDirectory = exists && stats.isDirectory();

0 commit comments

Comments
 (0)