Skip to content

Commit

Permalink
Syntactical nits
Browse files Browse the repository at this point in the history
Signed-off-by: Kate Goldenring <kate.goldenring@fermyon.com>
  • Loading branch information
kate-goldenring committed Jun 6, 2023
1 parent 7f63517 commit 81791cc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/commands/cloud.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pub struct DeployCommand {

#[derive(Debug, Args, PartialEq)]
#[clap(
about = "Login to the Fermyon Platform.",
about = "Log into to the Fermyon Cloud.",
allow_hyphen_values = true,
disable_help_flag = true
)]
Expand All @@ -28,7 +28,7 @@ pub struct LoginCommand {

#[derive(Debug, Args, PartialEq)]
#[clap(
about = "Commands for publishing applications to the Fermyon Platform.",
about = "Commands for publishing applications to the Fermyon Cloud.",
allow_hyphen_values = true,
disable_help_flag = true
)]
Expand Down
5 changes: 4 additions & 1 deletion src/commands/external.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,10 @@ pub async fn execute_external_subcommand(
let plugin_installer = Install {
name: Some("cloud".to_string()),
yes_to_all: true,
..Default::default()
local_manifest_src: None,
remote_manifest_src: None,
override_compatibility_check: false,
version: None,
};
plugin_installer.run().await?;
} else {
Expand Down
2 changes: 1 addition & 1 deletion src/commands/plugins.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ impl PluginCommands {
}

/// Install plugins from remote source
#[derive(Parser, Debug, Default)]
#[derive(Parser, Debug)]
pub struct Install {
/// Name of Spin plugin.
#[clap(
Expand Down

0 comments on commit 81791cc

Please sign in to comment.