aboutsummaryrefslogtreecommitdiff
path: root/dotup_cli/src/commands/link.rs
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2021-10-30 21:09:56 +0100
committerGitHub <[email protected]>2021-10-30 21:09:56 +0100
commit89daa500b322f98436abb09a80c1a4e0b3c96a2e (patch)
treeee905efee3761f2cf3f8efdae52d159f25b2511d /dotup_cli/src/commands/link.rs
parent450ec8fbae076543d8ccc2d363613f0ae778a01d (diff)
parent3b4b9aa6bc041f1e24761e94b1c052ad20f9ca66 (diff)
Merge pull request #11 from diogo464/dependabot/cargo/clap-3.0.0-beta.5
Bump clap from 3.0.0-beta.2 to 3.0.0-beta.5
Diffstat (limited to 'dotup_cli/src/commands/link.rs')
-rw-r--r--dotup_cli/src/commands/link.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/dotup_cli/src/commands/link.rs b/dotup_cli/src/commands/link.rs
index 66194e1..d1f61ea 100644
--- a/dotup_cli/src/commands/link.rs
+++ b/dotup_cli/src/commands/link.rs
@@ -10,8 +10,7 @@ use super::prelude::*;
10/// If a link is created for a file that already had a link then the old link will be overwritten. 10/// If a link is created for a file that already had a link then the old link will be overwritten.
11/// By default creating a link to a directory will recursively link all files under that 11/// By default creating a link to a directory will recursively link all files under that
12/// directory, to actually link a directory use the --directory flag. 12/// directory, to actually link a directory use the --directory flag.
13#[derive(Clap)] 13#[derive(Parser)]
14#[clap(setting = AppSettings::ColoredHelp)]
15pub struct Opts { 14pub struct Opts {
16 /// Treats the paths as directories. This will create links to the actual directories instead 15 /// Treats the paths as directories. This will create links to the actual directories instead
17 /// of recursively linking all files under them. 16 /// of recursively linking all files under them.