This commit is contained in:
Билай Станислав 2024-12-18 16:43:32 +03:00
parent 798c687547
commit d74a30f33e
2 changed files with 2 additions and 1 deletions

View File

@ -20,4 +20,4 @@ MAIL_SMTP_PASSWORD=somepassword
MODULE_SHOP_URL='http://igfs.loc' MODULE_SHOP_URL='http://igfs.loc'
MODULE_SHOP_TOKEN='your token' MODULE_SHOP_TOKEN='your token'
SECRET_KEY='' SECRET_KEY='key'

View File

@ -81,6 +81,7 @@ class KernelService
$this->files->copyKernelFolder($tmpKernelDirFull . 'bootstrap' , ROOT_DIR . '/bootstrap'); $this->files->copyKernelFolder($tmpKernelDirFull . 'bootstrap' , ROOT_DIR . '/bootstrap');
} }
copy($tmpKernelDirFull . $file , ROOT_DIR . '/' . $file); copy($tmpKernelDirFull . $file , ROOT_DIR . '/' . $file);
chmod(ROOT_DIR . '/' . $file, 0775);
} }
$this->files->recursiveRemoveDir($tmpKernelDirFull); $this->files->recursiveRemoveDir($tmpKernelDirFull);