Skip to content

Commit

Permalink
Fix folder not existing before task make use of it
Browse files Browse the repository at this point in the history
  • Loading branch information
thecatcore committed Feb 11, 2024
1 parent e2739c4 commit b8f0cec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
multi_filament_version=0.2.4
multi_filament_version=0.2.5

asm_version=9.5
unpick_version=2.3.0
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@ protected void createTasks() {

UnifyMappingsTask unifyMappings = getProject().getTasks().create("unifyMappings", UnifyMappingsTask.class, task -> {
task.dependsOn(versionifyMappingsExclude);

task.doFirst(a -> getTempDirectory().getAsFile().get().mkdir());

task.getUnifiedDir().set(getTempMappingsDir());
task.getVersionedDir().set(getActiveMappingsDir());
task.getOutputDir().set(getMultiMappingsDir());
Expand Down

0 comments on commit b8f0cec

Please sign in to comment.