aboutsummaryrefslogtreecommitdiff
path: root/dotup_cli/src/commands/link.rs
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2021-07-09 04:14:02 -0400
committerdiogo464 <[email protected]>2021-07-09 04:14:02 -0400
commite1df098c885bda5cd0b375cb46c460367abe4f17 (patch)
tree348ddce946295c02870ad47d094d5d755cbe2e7b /dotup_cli/src/commands/link.rs
parent862fed11b358cf0d8747decb0c343cfe94784bad (diff)
Renamed LinkDesc to LinkCreateParams
Diffstat (limited to 'dotup_cli/src/commands/link.rs')
-rw-r--r--dotup_cli/src/commands/link.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/dotup_cli/src/commands/link.rs b/dotup_cli/src/commands/link.rs
index 87453bd..bed3744 100644
--- a/dotup_cli/src/commands/link.rs
+++ b/dotup_cli/src/commands/link.rs
@@ -25,7 +25,7 @@ pub fn main(config: Config, opts: Opts) -> anyhow::Result<()> {
25 25
26 if let Some(destination) = destination { 26 if let Some(destination) = destination {
27 for path in collect_file_type(origins, FileType::File)? { 27 for path in collect_file_type(origins, FileType::File)? {
28 let link_desc = LinkDesc { 28 let link_desc = LinkCreateParams {
29 origin: path, 29 origin: path,
30 destination: destination.clone(), 30 destination: destination.clone(),
31 }; 31 };