summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 7d4d2df..60c5df5 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -26,6 +26,13 @@ pub fn run_command(user_input: String) -> Result<ControlFlow<(), ()>, ShackleErr
println!("{table}");
}
+ Ok(ShackleCommand::SetDescription(SetDescriptionArgs {
+ directory,
+ description,
+ })) => {
+ git::set_description(&directory, &description)?;
+ println!("Successfully updated description");
+ }
Ok(ShackleCommand::GitInit(GitInitArgs {
repo_name,
group,