Skip to content

Commit c9517d4

Browse files
authored
fixed stupid bug (invalid arguments "x" "x" "x")
1 parent 5da67e5 commit c9517d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/src/main/java/com/devonfw/tools/ide/cli/CliArgument.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ public String getArgs() {
154154
String prefix = "\"";
155155
while (!current.isEnd()) {
156156
sb.append(prefix);
157-
sb.append(this.arg);
157+
sb.append(current.arg);
158158
sb.append("\"");
159159
current = current.next;
160160
prefix = " \"";

0 commit comments

Comments
 (0)