Running the informer for all components will not analyze the 'gb' component.

[INFORMER]
* NEW: Running the informer for all components will not analyze the 'gb' component. The metadata of 'gb' must be generated explicitly.
This commit is contained in:
gambas 2020-11-28 00:40:52 +01:00
parent 2c173c0a2d
commit b62f461c49

View File

@ -755,6 +755,8 @@ static void make_component_list()
if (strcmp(FILE_get_ext(name), "component"))
continue;
name = FILE_get_basename(name);
if (strcmp(name, "gb") == 0)
continue;
*((char **)ARRAY_add(&_components)) = STR_copy(name);
}