From 82b3336adb0a0bc2168b81d91499b13df7ad585c Mon Sep 17 00:00:00 2001 From: Yuri Kulikov <42337914+yuri-kulikov@users.noreply.github.com> Date: Mon, 27 Aug 2018 09:59:19 +0300 Subject: [PATCH] Deleted 'chmod' command as not necessary and caused 'Too many open files in system' (#1388) --- Examples/create-app.js | 1 - 1 file changed, 1 deletion(-) diff --git a/Examples/create-app.js b/Examples/create-app.js index 6b4868e7a..711b0cd5c 100644 --- a/Examples/create-app.js +++ b/Examples/create-app.js @@ -178,7 +178,6 @@ function optimizeToTestInDebugMode() { function grantAccess(folderPath) { execSync('chown -R `whoami` ' + folderPath); - execSync('chmod -R 755 ' + folderPath); } function copyRecursiveSync(src, dest) {