aboutsummaryrefslogtreecommitdiffstats
path: root/src/command/client/sync.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/command/client/sync.rs')
-rw-r--r--src/command/client/sync.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command/client/sync.rs b/src/command/client/sync.rs
index af809f3e..51fcbf63 100644
--- a/src/command/client/sync.rs
+++ b/src/command/client/sync.rs
@@ -8,12 +8,12 @@ mod logout;
mod register;
#[derive(Subcommand)]
-#[clap(infer_subcommands = true)]
+#[command(infer_subcommands = true)]
pub enum Cmd {
/// Sync with the configured server
Sync {
/// Force re-download everything
- #[clap(long, short)]
+ #[arg(long, short)]
force: bool,
},