nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1diff --git a/helix-cli/src/main.rs b/helix-cli/src/main.rs
2index 18e279fd..a3ec271c 100644
3--- a/helix-cli/src/main.rs
4+++ b/helix-cli/src/main.rs
5@@ -121,13 +121,6 @@ enum Commands {
6 action: MetricsAction,
7 },
8
9- /// Update to the latest version
10- Update {
11- /// Force update even if already on latest version
12- #[clap(long)]
13- force: bool,
14- },
15-
16 /// Migrate v1 project to v2 format
17 Migrate {
18 /// Project directory to migrate (defaults to current directory)
19@@ -253,9 +246,6 @@ async fn main() -> Result<()> {
20 // Send CLI install event (only first time)
21 metrics_sender.send_cli_install_event_if_first_time();
22
23- // Check for updates before processing commands
24- update::check_for_updates().await?;
25-
26 let cli = Cli::parse();
27
28 let result = match cli.command {
29@@ -280,7 +270,6 @@ async fn main() -> Result<()> {
30 Commands::Prune { instance, all } => commands::prune::run(instance, all).await,
31 Commands::Delete { instance } => commands::delete::run(instance).await,
32 Commands::Metrics { action } => commands::metrics::run(action).await,
33- Commands::Update { force } => commands::update::run(force).await,
34 Commands::Migrate {
35 path,
36 queries_dir,