diff --git a/src/libslic3r/PresetBundle.cpp b/src/libslic3r/PresetBundle.cpp index 79a942693d..088125def2 100644 --- a/src/libslic3r/PresetBundle.cpp +++ b/src/libslic3r/PresetBundle.cpp @@ -4549,6 +4549,7 @@ std::pair PresetBundle::load_vendor_configs_ std::string version_str = it.value(); auto config_version = Semver::parse(version_str); if (! config_version) { + ++m_errors; throw ConfigurationError((boost::format("vendor %1%'s config version: %2% invalid\nSuggest cleaning the directory %3% firstly") % vendor_name % version_str % path).str()); } else {