diff --git a/Assets/Plugins/Mooble/StaticAnalysis/CLI.cs b/Assets/Plugins/Mooble/StaticAnalysis/CLI.cs index bc6b16a..0d17790 100644 --- a/Assets/Plugins/Mooble/StaticAnalysis/CLI.cs +++ b/Assets/Plugins/Mooble/StaticAnalysis/CLI.cs @@ -38,6 +38,10 @@ public static void RunPrefabAnalysis() { foundError = foundError || foundErrorThisTime; } + if (prefabPaths.Count == 0) { + stringBuilder.Append("No prefabs were analyzed."); + } + Log.Debug(stringBuilder.ToString()); if (foundError) { @@ -69,6 +73,10 @@ public static void RunSceneAnalysis() { } } + if (scenes.Count == 0) { + stringBuilder.Append("No scenes were analyzed."); + } + Log.Debug(stringBuilder.ToString()); if (foundError) {