Skip to content

Commit

Permalink
Fix group overriding with machine username
Browse files Browse the repository at this point in the history
  • Loading branch information
thmasker committed Aug 2, 2024
1 parent b2699a5 commit 791ab5e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class ImageOptions {

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

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

0 comments on commit 791ab5e

Please sign in to comment.