Skip to content

Commit

Permalink
Fix #2 again: Include curseforge-cli in path
Browse files Browse the repository at this point in the history
  • Loading branch information
thehellrocc committed Apr 16, 2023
1 parent 2e9023f commit 1dc92dd
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 1dc92dd

Please sign in to comment.