Compare commits

..

No commits in common. "9351f3ca1e44afc95be1836b9a3c6fecc5e7f2cf" and "bfa6966ec60a2ada34ee26a946b4ce3d3fa1f475" have entirely different histories.

View file

@ -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);