Skip to content

Commit a302cba

Browse files
committed
Fix typo in error message
1 parent bc32a0d commit a302cba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

devtools/maven/src/main/java/io/quarkus/maven/DeployMojo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public void accept(List<String> strings) {
4949
super.doExecute();
5050
} else if (targets.size() > 1 && target == null) {
5151
getLog().error(
52-
"Too many installed extensions support quarkus:deploy. You must choose one by setting quarkus.deploy.target.");
52+
"Too many installed extensions support quarkus:deploy. You must choose one by setting quarkus.deploy.target.");
5353
getLog().error("Extensions: " + targets.stream().collect(Collectors.joining(" ")));
5454
} else if (target != null && !targets.contains(target)) {
5555
getLog().error(

0 commit comments

Comments
 (0)