diff --git a/source/dub/commandline.d b/source/dub/commandline.d index a02c538..d5a6219 100644 --- a/source/dub/commandline.d +++ b/source/dub/commandline.d @@ -592,6 +592,11 @@ setupPackage(dub, package_name); + if (!m_nodeps) { + logInfo("Checking dependencies in '%s'", dub.projectPath.toNativeString()); + dub.update(UpdateOptions.none); + } + dub.describeProject(m_buildPlatform, m_build_config.length ? m_build_config : m_defaultConfig); return 0; }