mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-03 23:11:57 +03:00
[FEATURE] Default value client and assets download
This commit is contained in:
parent
57868a7136
commit
bce28b7c38
1 changed files with 9 additions and 3 deletions
|
@ -38,10 +38,16 @@ public String getUsageDescription() {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void invoke(String... args) throws IOException, CommandException {
|
public void invoke(String... args) throws IOException, CommandException {
|
||||||
verifyArgs(args, 2);
|
verifyArgs(args, 1);
|
||||||
//Version version = Version.byName(args[0]);
|
|
||||||
String versionName = args[0];
|
String versionName = args[0];
|
||||||
String dirName = IOHelper.verifyFileName(args[1] != null ? args[1] : args[0]);
|
String dirName;
|
||||||
|
try {
|
||||||
|
dirName = IOHelper.verifyFileName(args[1]);
|
||||||
|
} catch (ArrayIndexOutOfBoundsException e) {
|
||||||
|
dirName = IOHelper.verifyFileName(args[0]);
|
||||||
|
logger.warn("There is no specified profile name, the default value is set as the name of the downloaded client archive: " + dirName);
|
||||||
|
}
|
||||||
Path clientDir = server.updatesDir.resolve(dirName);
|
Path clientDir = server.updatesDir.resolve(dirName);
|
||||||
|
|
||||||
boolean isMirrorClientDownload = false;
|
boolean isMirrorClientDownload = false;
|
||||||
|
|
Loading…
Reference in a new issue