Skip to content

Commit

Permalink
#879: allow - as value (#880)
Browse files Browse the repository at this point in the history
  • Loading branch information
hohwille authored Dec 10, 2024
1 parent f19f360 commit 95e7d15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Release with new features and bugfixes:
* https://github.com/devonfw/IDEasy/issues/799[#799]: binaries from zip download lack executable flags
* https://github.com/devonfw/IDEasy/issues/81[#81]: Implement Toolcommandlet for Kubernetes
* https://github.com/devonfw/IDEasy/issues/737[#737]: Adds cd command to ide shell
* https://github.com/devonfw/IDEasy/issues/879[#879]: cannot omit default settings URL in ide create
* https://github.com/devonfw/IDEasy/issues/758[#758]: Create status commandlet
* https://github.com/devonfw/IDEasy/issues/824[#824]: ide create «settings-url»#«branch» not working
* https://github.com/devonfw/IDEasy/issues/754[#754]: Again messages break processable command output
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ protected boolean apply(String normalizedName, CliArguments args, IdeContext con
if (option && !argument.isOption()) {
return false;
}
if (!option && argument.isOption() && args.isSplitShortOpts()) {
if (!option && argument.isOption() && (argument.get().length() > 1) && args.isSplitShortOpts()) {
return false;
}
String argValue = null;
Expand Down

0 comments on commit 95e7d15

Please sign in to comment.