New: add `--version` flag

This commit is contained in:
Nick Groenen 2021-02-15 21:24:23 +01:00
parent e85421609e
commit acfacc690b
No known key found for this signature in database
GPG Key ID: 4F0AD019928AE098
1 changed files with 14 additions and 1 deletions

View File

@ -1,13 +1,18 @@
use eyre::{eyre, Result};
use gumdrop::Options;
use obsidian_export::{ExportError, Exporter, FrontmatterStrategy, WalkOptions};
use std::path::PathBuf;
use std::{env, path::PathBuf};
const VERSION: &'static str = env!("CARGO_PKG_VERSION");
#[derive(Debug, Options)]
struct Opts {
#[options(help = "Display program help")]
help: bool,
#[options(help = "Display version information")]
version: bool,
#[options(help = "Source file containing reference", free, required)]
source: Option<PathBuf>,
@ -50,6 +55,14 @@ fn frontmatter_strategy_from_str(input: &str) -> Result<FrontmatterStrategy> {
}
fn main() {
// Due to the use of free arguments in Opts, we must bypass Gumdrop to determine whether the
// version flag was specified. Without this, "missing required free argument" would get printed
// when no other args are specified.
if env::args().any(|arg| arg == "-v" || arg == "--version") {
println!("obsidian-export {}", VERSION);
std::process::exit(0);
}
let args = Opts::parse_args_default_or_exit();
let source = args.source.unwrap();
let destination = args.destination.unwrap();