From 587d8521c51407e689460f7794a8c7997c089dc3 Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Fri, 20 May 2022 15:00:19 -0700 Subject: [PATCH] cli: make `op restore` require an operation ID It doesn't make much sense to default to restoring to the current operation. --- src/commands.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/commands.rs b/src/commands.rs index 5c2252381..261b450e8 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -1679,7 +1679,6 @@ struct OperationLogArgs {} #[derive(clap::Args, Clone, Debug)] struct OperationRestoreArgs { /// The operation to restore to - #[clap(default_value = "@")] operation: String, }