Skip to content

Commit

Permalink
separate runs folder
Browse files Browse the repository at this point in the history
  • Loading branch information
Hummel009 committed Feb 18, 2024
1 parent 5d806d6 commit b339298
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions appForge/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ minecraft {
mappings("official", "1.20.4")
runs {
create("client") {
workingDirectory(project.file("run"))
workingDirectory(project.file("runs/client"))
}
create("server") {
workingDirectory(project.file("run"))
workingDirectory(project.file("runs/server"))
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions appForgeArchive/1.13.2/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ minecraft {
mappings("snapshot", "20180921-1.13")
runs {
create("client") {
workingDirectory(project.file("run"))
workingDirectory(project.file("runs/client"))
}
create("server") {
workingDirectory(project.file("run"))
workingDirectory(project.file("runs/server"))
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions appForgeArchive/1.14.4/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ minecraft {
mappings("official", "1.14.4")
runs {
create("client") {
workingDirectory(project.file("run"))
workingDirectory(project.file("runs/client"))
}
create("server") {
workingDirectory(project.file("run"))
workingDirectory(project.file("runs/server"))
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions appForgeArchive/1.15.2/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ minecraft {
mappings("official", "1.15.2")
runs {
create("client") {
workingDirectory(project.file("run"))
workingDirectory(project.file("runs/client"))
}
create("server") {
workingDirectory(project.file("run"))
workingDirectory(project.file("runs/server"))
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions appForgeArchive/1.16.5/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ minecraft {
mappings("official", "1.16.5")
runs {
create("client") {
workingDirectory(project.file("run"))
workingDirectory(project.file("runs/client"))
}
create("server") {
workingDirectory(project.file("run"))
workingDirectory(project.file("runs/server"))
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions appForgeArchive/1.17.1/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ minecraft {
mappings("official", "1.17.1")
runs {
create("client") {
workingDirectory(project.file("run"))
workingDirectory(project.file("runs/client"))
}
create("server") {
workingDirectory(project.file("run"))
workingDirectory(project.file("runs/server"))
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions appForgeArchive/1.18.2/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ minecraft {
mappings("official", "1.18.2")
runs {
create("client") {
workingDirectory(project.file("run"))
workingDirectory(project.file("runs/client"))
}
create("server") {
workingDirectory(project.file("run"))
workingDirectory(project.file("runs/server"))
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions appForgeArchive/1.19.4/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ minecraft {
mappings("official", "1.19.4")
runs {
create("client") {
workingDirectory(project.file("run"))
workingDirectory(project.file("runs/client"))
}
create("server") {
workingDirectory(project.file("run"))
workingDirectory(project.file("runs/server"))
}
}
}
Expand Down

0 comments on commit b339298

Please sign in to comment.