2
0
Fork 0
mirror of https://github.com/ethauvin/bld.git synced 2025-04-25 00:07:12 -07:00

Fixed regression in 2.0.0 with global bld command when used without any arguments.

Upgraded to bld 2.0.1.
Updated version to 2.0.1.
This commit is contained in:
Geert Bevin 2024-07-28 20:59:21 -04:00
parent 97a153f955
commit d96ce65cbb
6 changed files with 7 additions and 6 deletions

View file

@ -2,12 +2,12 @@
<library name="bld">
<CLASSES>
<root url="file://$PROJECT_DIR$/lib/bld" />
<root url="jar://$USER_HOME$/.bld/dist/bld-2.0.0.jar!/" />
<root url="jar://$USER_HOME$/.bld/dist/bld-2.0.1.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES>
<root url="file://$PROJECT_DIR$/lib/bld" />
<root url="jar://$USER_HOME$/.bld/dist/bld-2.0.0-sources.jar!/" />
<root url="jar://$USER_HOME$/.bld/dist/bld-2.0.1-sources.jar!/" />
</SOURCES>
<excluded>
<root url="jar://$PROJECT_DIR$/lib/bld/bld-wrapper.jar!/" />

2
core

@ -1 +1 @@
Subproject commit 882d083d77a86d23a7bd27f63f1d01af09ce93c5
Subproject commit a45001aa3926f57d9d457e7c12800b264010b5dd

Binary file not shown.

View file

@ -8,4 +8,4 @@ bld.javaOptions=
bld.javacOptions=
bld.repositories=MAVEN_CENTRAL,RIFE2_RELEASES
bld.sourceDirectories=core/src/bld/java
bld.version=2.0.0
bld.version=2.0.1

View file

@ -383,7 +383,8 @@ public class Wrapper {
}
currentDir_ = new File(current_file.getParent());
if (BUILD_ARGUMENT.equals(arguments.get(0))) {
if (!arguments.isEmpty() &&
BUILD_ARGUMENT.equals(arguments.get(0))) {
launchMode_ = LaunchMode.Build;
arguments.remove(0);
}

View file

@ -1 +1 @@
2.0.0
2.0.1