Fix build system.

This commit is contained in:
2019-01-26 16:46:36 +01:00
parent 5276790afe
commit faba9b36cb
7 changed files with 57 additions and 23 deletions

View File

@ -134,6 +134,10 @@ function src_inc_list_js(string $assets_url, array $files) : string {
//Process the list of files
foreach($files as $file){
if(is_array($file))
$file = $file["path"];
$source .= src_inc_js($assets_url.$file)."\n\t\t";
}