diff --git a/resources/thesis.pdf b/resources/thesis.pdf index 300b3cf6..fefe4116 100644 Binary files a/resources/thesis.pdf and b/resources/thesis.pdf differ diff --git a/src/cli/mod.rs b/src/cli/mod.rs index c7e02c10..55d12358 100644 --- a/src/cli/mod.rs +++ b/src/cli/mod.rs @@ -3,8 +3,8 @@ /// Parse CLI arguments, and exit if `--help`, `--version`, or an /// unknown argument was supplied pub fn parse_cli_args() { - let args = std::env::args().skip(1); - for arg in args { + let mut args = std::env::args().skip(1); + if let Some(arg) = args.next() { match arg.as_str() { "--help" | "-h" => print_help(), "--version" | "-v" => print_version(),