Skip to content

Commit

Permalink
chore: updated option name
Browse files Browse the repository at this point in the history
  • Loading branch information
psmf22 committed Dec 6, 2023
1 parent 115cfdf commit 81ab1e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
public class ToolDebrickedInstallCommand extends AbstractToolInstallCommand {
@Getter @Mixin private OutputHelperMixins.Install outputHelper;
@Getter private String toolName = ToolDebrickedCommands.TOOL_NAME;
@Getter @Option(names={"-a", "--cpuArchitecture"}, required = true, descriptionKey="fcli.tool.debricked.install.cpuArchitecture", defaultValue = "x86_64")
@Getter @Option(names={"-a", "--cpu-architecture"}, required = true, descriptionKey="fcli.tool.debricked.install.cpuArchitecture", defaultValue = "x86_64")
private String _cpuArchitecture;

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
public class ToolDebrickedUninstallCommand extends AbstractToolUninstallCommand {
@Getter @Mixin private OutputHelperMixins.Uninstall outputHelper;
@Getter private String toolName = ToolDebrickedCommands.TOOL_NAME;
@Getter @Option(names={"-a", "--cpuArchitecture"}, required = true, descriptionKey="fcli.tool.debricked.uninstall.cpuArchitecture", defaultValue = "x86_64")
@Getter @Option(names={"-a", "--cpu-architecture"}, required = true, descriptionKey="fcli.tool.debricked.uninstall.cpuArchitecture", defaultValue = "x86_64")
private String _cpuArchitecture;

@Override
Expand Down

0 comments on commit 81ab1e9

Please sign in to comment.