Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
REVIEW: Adjust arg field visibility
✗ CI failure Erik Kundt committed 6 months ago
commit 3e9a446112daca17902634566d4a2d5380f88885
parent 2f1a4b485d18f572d46244ccb7e39af7dfafeee6
2 failed (2 total) View logs
1 file changed +3 -3
modified crates/radicle-cli/src/commands/checkout/args.rs
@@ -11,13 +11,13 @@ Creates a working copy from a repository in local storage.
pub struct Args {
    /// Repository ID of the repository to checkout
    #[arg(value_name = "RID")]
-
    pub repo: RepoId,
+
    pub(super) repo: RepoId,

    /// The DID of the remote peer to checkout
    #[arg(long, value_name = "DID")]
-
    pub remote: Option<Did>,
+
    pub(super) remote: Option<Did>,

    /// Don't ask for confirmation during checkout
    #[arg(long)]
-
    pub no_confirm: bool,
+
    no_confirm: bool,
}