From bb5b534ab8d1267aaedbf3bc28d301da3ebe5821 Mon Sep 17 00:00:00 2001 From: jules Date: Thu, 9 May 2019 09:52:50 +0100 Subject: [PATCH] Added a couple more file types to the projucer's list when stripping whitespace --- extras/Projucer/Source/Application/jucer_CommandLine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/Projucer/Source/Application/jucer_CommandLine.cpp b/extras/Projucer/Source/Application/jucer_CommandLine.cpp index 8b480db961..fcef733b37 100644 --- a/extras/Projucer/Source/Application/jucer_CommandLine.cpp +++ b/extras/Projucer/Source/Application/jucer_CommandLine.cpp @@ -48,7 +48,7 @@ namespace { Array files; - for (DirectoryIterator di (folder, true, "*.cpp;*.cxx;*.cc;*.c;*.h;*.hpp;*.hxx;*.hpp;*.mm;*.m;*.java;*.dox;", File::findFiles); di.next();) + for (DirectoryIterator di (folder, true, "*.cpp;*.cxx;*.cc;*.c;*.h;*.hpp;*.hxx;*.hpp;*.mm;*.m;*.java;*.dox;*.soul;*.js", File::findFiles); di.next();) if (! di.getFile().isSymbolicLink()) files.add (di.getFile());