From 776d5f7d2ef4c78b5428197687c8aaa2604ba3e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Ludwig?= Date: Thu, 17 Jul 2014 09:56:00 +0200 Subject: [PATCH] Add upgrade() call when building DDOX to get the required dependencies. Fixes #366. --- source/dub/dub.d | 1 + 1 file changed, 1 insertion(+) diff --git a/source/dub/dub.d b/source/dub/dub.d index e539bfad0..a976cf8f9 100644 --- a/source/dub/dub.d +++ b/source/dub/dub.d @@ -604,6 +604,7 @@ class Dub { auto ddox_dub = new Dub(m_packageSuppliers); ddox_dub.loadPackage(ddox_pack.path); + ddox_dub.upgrade(UpgradeOptions.select); auto compiler_binary = "dmd";