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

Projucer: Removed check for new JUCE versions when running from the command line

This commit is contained in:
ed 2020-04-23 15:42:14 +01:00
parent 24ea3d4e8b
commit b8d57b3dbe

View file

@ -105,7 +105,8 @@ Project::Project (const File& f)
updateJUCEPathWarning();
getGlobalProperties().addChangeListener (this);
LatestVersionCheckerAndUpdater::getInstance()->checkForNewVersion (true);
if (! app.isRunningCommandLine)
LatestVersionCheckerAndUpdater::getInstance()->checkForNewVersion (true);
}
Project::~Project()