1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fix createAssetInputStream() for JUCE examples exported by the Projucer

This commit is contained in:
attila 2024-04-24 12:50:30 +02:00
parent 660b789415
commit 552b39301e

View file

@ -79,7 +79,7 @@ static bool isJUCEExample (const File& pipFile)
lines.begin() + (std::min (lines.size(), numLinesToTest)), lines.begin() + (std::min (lines.size(), numLinesToTest)),
[] (const auto& line) [] (const auto& line)
{ {
return line.contains ("This file is part of the JUCE examples."); return line.contains ("This file is part of the JUCE framework examples");
}); });
} }