| |
---|
| | // 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 the folder '%s' manually.", pack.path.toNativeString()); |
---|
| | throw new Exception(format("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); |
---|
| | |
---|
| |
---|
| | |