[FIX] ProGuard pipeline fix

This commit is contained in:
Gravita 2021-04-07 15:48:21 +07:00
parent 7015d45088
commit e5e8fa1463

View file

@ -29,7 +29,7 @@ public class ProGuardComponent extends Component implements AutoCloseable, Recon
@Override
public void init(LaunchServer launchServer) {
proguardConf = new ProguardConf(launchServer, this);
launchServer.launcherBinary.add((v) -> v.getName().startsWith(modeAfter), new ProGuardBuildTask(launchServer, proguardConf, this));
launchServer.launcherBinary.addAfter((v) -> v.getName().startsWith(modeAfter), new ProGuardBuildTask(launchServer, proguardConf, this));
}
@Override