summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorCanop <cano.petrole@gmail.com>2019-02-22 16:33:30 +0100
committerCanop <cano.petrole@gmail.com>2019-02-22 16:33:30 +0100
commit7dc198810127b93893a403940fca963e7abbb2bc (patch)
tree66c9b03b899be9e6968fc9e83749e3ea19a52921 /src/main.rs
parentfe01c907bf7523fc117dbf7bdad69a363602bb49 (diff)
minor code cleaning
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index 75ab4e3..7cb2cdc 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -26,7 +26,9 @@ mod patterns;
mod regex_patterns;
mod screen_text;
mod screens;
-mod shell_func;
+mod shell_bash;
+mod shell_fish;
+mod shell_install;
mod skin;
mod skin_conf;
mod spinner;
@@ -81,7 +83,7 @@ fn configure_log() {
fn run() -> Result<Option<Launchable>, ProgramError> {
configure_log();
let launch_args = cli::read_lauch_args()?;
- let should_quit = shell_func::init(&launch_args)?;
+ let should_quit = shell_install::init(&launch_args)?;
if should_quit {
return Ok(None);
}