2
0
Fork 0
mirror of https://github.com/ethauvin/bld.git synced 2025-04-24 15:57:11 -07:00
This commit is contained in:
Geert Bevin 2024-07-30 09:48:29 -04:00
parent a3a753f70a
commit aeecd957c6
2 changed files with 8 additions and 4 deletions

View file

@ -0,0 +1,6 @@
<component name="InspectionProjectProfileManager">
<profile version="1.0">
<option name="myName" value="Project Default" />
<inspection_tool class="OctalLiteral" enabled="false" level="WARNING" enabled_by_default="false" />
</profile>
</component>

View file

@ -137,11 +137,9 @@ public class BldBuild extends AbstractRife2Build {
f.perms(0755);
});
});
b.dir("lib", l -> {
l.file("bld-wrapper.jar", f -> f.move(path(tmp, "lib", "bld", "bld-wrapper.jar")));
});
b.dir("lib", l -> l.file("bld-wrapper.jar", f -> f.move(path(tmp, "lib", "bld", "bld-wrapper.jar"))));
});
t.dir("lib", l -> l.delete());
t.dir("lib", DirBuilder::delete);
});
zipBldOperation