Skip to content

Commit c1dd658

Browse files
thmaskergsmet
authored andcommitted
Fix group overriding with machine username
(cherry picked from commit 791ab5e)
1 parent 466b0a4 commit c1dd658

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

devtools/cli/src/main/java/io/quarkus/cli/image/ImageOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class ImageOptions {
99

1010
@CommandLine.Option(order = 3, names = {
1111
"--group" }, description = "The group part of the container image. Defaults to the ${user.name}.")
12-
public Optional<String> group = Optional.of(System.getProperty("user.name"));
12+
public Optional<String> group = Optional.empty();
1313

1414
@CommandLine.Option(order = 4, names = {
1515
"--name" }, description = "The name part of the container image. Defaults to the ${project.artifactId}.")

0 commit comments

Comments
 (0)