diff options
| author | lukeflo | 2024-10-19 23:06:19 +0200 |
|---|---|---|
| committer | lukeflo | 2024-10-19 23:06:19 +0200 |
| commit | f58527652547061e1349864c41d8daf5a1017a6e (patch) | |
| tree | 36c6567f71ef7dd9db36a457227fbfdbb72fd2bb /src/main.rs | |
| parent | 5114820b9733bfb4daeedaef4f892ba9f5f023a0 (diff) | |
| parent | cf6a8d0c25bba1ee767c1dcc945cfbb577dbd13c (diff) | |
| download | bibiman-f58527652547061e1349864c41d8daf5a1017a6e.tar.gz bibiman-f58527652547061e1349864c41d8daf5a1017a6e.zip | |
Merge branch 'value-parsing-and-hayagriva'
Sorting and other stuff implemented
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/main.rs b/src/main.rs index 6ef7ee1..979c4cf 100644 --- a/src/main.rs +++ b/src/main.rs @@ -17,7 +17,6 @@ use backend::cliargs::{self, CLIArgs}; use color_eyre::eyre::Result; -use core::panic; use errorsetup::init_error_hooks; use frontend::app::App; @@ -42,9 +41,9 @@ async fn main() -> Result<()> { std::process::exit(0); } - if !parsed_args.bibfilearg.is_file() { - panic!("No \'.bib\' file passed, aborting") - } + // if !parsed_args.bibfilearg.is_file() { + // panic!("No \'.bib\' file passed, aborting") + // } init_error_hooks()?; |
