Added Symfony\Yaml, improved installer and Makefile and updated .gitignore

This commit is contained in:
Netkas 2022-08-14 16:48:39 -04:00
parent 61ea95d95c
commit 5667ae25c5
30 changed files with 3514 additions and 637 deletions

View file

@ -33,8 +33,9 @@
$excluded_files = [
'hash_check.php',
'generate_build_files.php',
'default_config.yaml',
'installer',
'checksum.bin'.
'checksum.bin',
'build_files',
'ncc.sh',
'extension'
@ -50,7 +51,7 @@
$build_files_content = [];
foreach(scanContents(__DIR__) as $path)
{
if(!in_array($path, $excluded_files))
if(!in_array($path, $excluded_files, true))
{
$build_files_content[] = $path;
}