Skip to content
This repository was archived by the owner on Apr 29, 2024. It is now read-only.

Commit 85199c7

Browse files
committed
Merge branch 'hotfix/0.4.1'
2 parents 7c6e767 + f10a93c commit 85199c7

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.nincraft</groupId>
55
<artifactId>ModPackDownloader</artifactId>
6-
<version>0.4</version>
6+
<version>0.4.1</version>
77
<name>Mod Pack Downloader</name>
88
<packaging>jar</packaging>
99
<properties>

src/main/java/com/nincraft/modpackdownloader/processor/UpdateModsProcessor.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,8 @@ protected boolean process(final Entry<File, Manifest> manifestEntry) {
172172

173173
@Override
174174
protected boolean postProcess(final Entry<File, Manifest> manifestEntry) {
175-
if (isCheckUpdate() || arguments.isUpdateMods()) {
176-
updateCheckSummarizer.summarize();
177-
} else {
175+
updateCheckSummarizer.summarize();
176+
if (arguments.isUpdateMods()) {
178177
updateManifest(manifestEntry.getKey(), manifestEntry.getValue());
179178
}
180179
return true;

0 commit comments

Comments
 (0)