diff --git a/source/dub/packagemanager.d b/source/dub/packagemanager.d index 4232174..9d55f0a 100644 --- a/source/dub/packagemanager.d +++ b/source/dub/packagemanager.d @@ -326,8 +326,8 @@ // delete package files physically logDebug("Looking up journal"); auto journalFile = pack.path~JournalJsonFilename; - if( !existsFile(journalFile) ) - throw new Exception("Removal failed, no retrieval journal found for '"~pack.name~"'. Please remove manually."); + if (!existsFile(journalFile)) + throw new Exception("Removal failed, no retrieval journal found for '"~pack.name~"'. Please remove the folder '%s' manually.", pack.path.toNativeString()); auto packagePath = pack.path; auto journal = new Journal(journalFile);