Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
045088e8
Commit
045088e8
authored
Dec 31, 2013
by
Dave Syer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add -cp to option help for compiler commands
Fixes gh-178
parent
da889efd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
OptionHandler.java
...a/org/springframework/boot/cli/command/OptionHandler.java
+3
-0
CliTester.java
...src/test/java/org/springframework/boot/cli/CliTester.java
+1
-1
No files found.
spring-boot-cli/src/main/java/org/springframework/boot/cli/command/OptionHandler.java
View file @
045088e8
...
@@ -168,6 +168,9 @@ public class OptionHandler {
...
@@ -168,6 +168,9 @@ public class OptionHandler {
for
(
String
option
:
descriptor
.
options
())
{
for
(
String
option
:
descriptor
.
options
())
{
this
.
options
.
add
((
option
.
length
()
==
1
?
"-"
:
"--"
)
+
option
);
this
.
options
.
add
((
option
.
length
()
==
1
?
"-"
:
"--"
)
+
option
);
}
}
if
(
this
.
options
.
contains
(
"--cp"
))
{
this
.
options
.
add
(
"-cp"
);
}
this
.
description
=
descriptor
.
description
();
this
.
description
=
descriptor
.
description
();
}
}
...
...
spring-boot-cli/src/test/java/org/springframework/boot/cli/CliTester.java
View file @
045088e8
...
@@ -98,7 +98,7 @@ public class CliTester implements TestRule {
...
@@ -98,7 +98,7 @@ public class CliTester implements TestRule {
final
String
[]
sources
=
new
String
[
args
.
length
];
final
String
[]
sources
=
new
String
[
args
.
length
];
for
(
int
i
=
0
;
i
<
args
.
length
;
i
++)
{
for
(
int
i
=
0
;
i
<
args
.
length
;
i
++)
{
String
arg
=
args
[
i
];
String
arg
=
args
[
i
];
if
(
arg
.
startsWith
(
"-
-
"
))
{
if
(
arg
.
startsWith
(
"-"
))
{
sources
[
i
]
=
arg
;
sources
[
i
]
=
arg
;
}
}
else
{
else
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment