mirror of
https://github.com/ethauvin/bld.git
synced 2025-04-25 16:27:11 -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:
parent
97a153f955
commit
d96ce65cbb
6 changed files with 7 additions and 6 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue