mirror of
https://github.com/rife2/bld
synced 2025-12-20 16:48:38 +01: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:
parent
97a153f955
commit
d96ce65cbb
|
|
@ -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
2
core
|
|
@ -1 +1 @@
|
|||
Subproject commit 882d083d77a86d23a7bd27f63f1d01af09ce93c5
|
||||
Subproject commit a45001aa3926f57d9d457e7c12800b264010b5dd
|
||||
Binary file not shown.
|
|
@ -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
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
2.0.0
|
||||
2.0.1
|
||||
Loading…
Reference in a new issue