Skip to content

Commit

Permalink
Merge pull request #485 from psmf22/tool_debricked
Browse files Browse the repository at this point in the history
chore: updated option name
  • Loading branch information
psmf22 authored Dec 6, 2023
2 parents 15eee0d + aef42f6 commit 0d33af7
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 0d33af7

Please sign in to comment.