From 92f24f534264d7cbb45ddd04bbb5a7ab714db4e3 Mon Sep 17 00:00:00 2001 From: Michael Gattozzi Date: Thu, 2 Jan 2020 13:55:18 -0500 Subject: 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. --- ticket/src/main.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'ticket') 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(()) } -- cgit v1.2.3