mirror of https://github.com/godotengine/godot
Fix a wrong error formatting in gdextension export plugin
This commit is contained in:
parent
c241f1c523
commit
2b11fe1d63
|
|
@ -85,7 +85,7 @@ void GDExtensionExportPlugin::_export_file(const String &p_path, const String &p
|
||||||
for (const String &E : p_features) {
|
for (const String &E : p_features) {
|
||||||
features_vector.append(E);
|
features_vector.append(E);
|
||||||
}
|
}
|
||||||
ERR_FAIL_MSG(vformat("No suitable library found. The libraries' tags referred to an invalid feature flag. Possible feature flags for your platform: %s", p_path, String(", ").join(tags)));
|
ERR_FAIL_MSG(vformat("No suitable library found for GDExtension: %s. Possible feature flags for your platform: %s", p_path, String(", ").join(features_vector)));
|
||||||
}
|
}
|
||||||
|
|
||||||
List<String> dependencies;
|
List<String> dependencies;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue