From daacae276e3adee87a28f68047aacc499a43ecb9 Mon Sep 17 00:00:00 2001 From: Alexis Sellier Date: Wed, 23 Feb 2022 17:19:35 +0100 Subject: [PATCH] Add rad-pull to core tools Signed-off-by: Alexis Sellier --- Cargo.lock | 1 + help/Cargo.toml | 1 + help/src/lib.rs | 1 + 3 files changed, 3 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index d7585952..b6c2a2e3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4588,6 +4588,7 @@ dependencies = [ "rad-inspect", "rad-ls", "rad-profile", + "rad-pull", "rad-push", "rad-remote", "rad-self", diff --git a/help/Cargo.toml b/help/Cargo.toml index 3d05b31e..6e9e9728 100644 --- a/help/Cargo.toml +++ b/help/Cargo.toml @@ -26,5 +26,6 @@ rad-account = { path = "../account" } rad-checkout = { path = "../checkout" } rad-remote = { path = "../remote" } rad-push = { path = "../push" } +rad-pull = { path = "../pull" } rad-sync = { path = "../sync" } rad-ens = { path = "../ens" } diff --git a/help/src/lib.rs b/help/src/lib.rs index c60884f2..76f5524e 100644 --- a/help/src/lib.rs +++ b/help/src/lib.rs @@ -20,6 +20,7 @@ const COMMANDS: &[Help] = &[ rad_ls::HELP, rad_remote::HELP, rad_push::HELP, + rad_pull::HELP, rad_checkout::HELP, rad_track::HELP, rad_untrack::HELP,