aboutsummaryrefslogtreecommitdiff
path: root/ticket
diff options
context:
space:
mode:
authorMichael Gattozzi <mgattozzi@gmail.com>2020-01-02 13:55:18 -0500
committerMichael Gattozzi <mgattozzi@gmail.com>2020-01-02 13:55:18 -0500
commit92f24f534264d7cbb45ddd04bbb5a7ab714db4e3 (patch)
tree3d4b7c425967f34b065673efc4e61ad2783158df /ticket
parentf768dacbdb148a9c4e846d7b113d9aea37d563c5 (diff)
Fix init logic for `ds init`
Since the interface for `hooked init` changed to also make a language choice we need to allow the user to select the language when doing `ds init`. We also have ticket print out it ran successfully on initialization now. This was an oversight from an earlier refactor.
Diffstat (limited to 'ticket')
-rw-r--r--ticket/src/main.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/ticket/src/main.rs b/ticket/src/main.rs
index 652bd01..8b88306 100644
--- a/ticket/src/main.rs
+++ b/ticket/src/main.rs
@@ -103,6 +103,7 @@ fn init() -> Result<()> {
debug!("Creating closed ticket directory");
fs::create_dir_all(&closed_tickets()?)?;
trace!("Done initializing tickets.");
+ info!("Initialized repo to use ticket");
Ok(())
}