Skip to content

Commit

Permalink
Merge pull request #3 from thehellrocc/fix-modpack-path
Browse files Browse the repository at this point in the history
Fix #2 again: Include curseforge-cli in path
  • Loading branch information
khanhduytran0 authored Apr 16, 2023
2 parents 2e9023f + 1dc92dd commit 694de8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ml/northwestwind/Modpack.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ private static void install(String[] args) {
copyFromOverride(packFolder.getAbsolutePath(), (String) manifestJson.get("overrides"));
downloadMods(packFolder.getAbsolutePath());
String thumb = downloadThumb(json);
genProfile(name, "." + File.separator + Config.modpackDir.getName() + File.separator + packFolder.getName(), thumb, getModVersion(manifestJson));
genProfile(name, "." + File.separator + "curseforge-cli" + File.separator + Config.modpackDir.getName() + File.separator + packFolder.getName(), thumb, getModVersion(manifestJson));
//genProfile(name, packFolder.getAbsolutePath(), thumb, getModVersion(manifestJson));
System.out.println(Ansi.ansi().fg(Ansi.Color.GREEN).a("Finished download of " + name).reset());
} catch (Exception e) {
Expand Down

0 comments on commit 694de8b

Please sign in to comment.