mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-01-09 09:09:46 +03:00
Compare commits
No commits in common. "9351f3ca1e44afc95be1836b9a3c6fecc5e7f2cf" and "bfa6966ec60a2ada34ee26a946b4ce3d3fa1f475" have entirely different histories.
9351f3ca1e
...
bfa6966ec6
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ public void invoke(String... args) throws Exception {
|
|||
verifyArgs(args, 1);
|
||||
//Version version = Version.byName(args[0]);
|
||||
String versionName = args[0];
|
||||
String dirName = IOHelper.verifyFileName(args.length > 1 ? args[1] : "assets");
|
||||
String dirName = IOHelper.verifyFileName(args[1] != null ? args[1] : "assets");
|
||||
String type = args.length > 2 ? args[2] : "mojang";
|
||||
Path assetDir = server.updatesDir.resolve(dirName);
|
||||
|
||||
|
|
Loading…
Reference in a new issue