Skip to content

Commit

Permalink
bump xmodits-lib
Browse files Browse the repository at this point in the history
  • Loading branch information
B0ney committed Jul 25, 2023
1 parent 74295cf commit 7613c84
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
9 changes: 8 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "xmodits"
authors = ["B0ney - https://github.com/B0ney"]
description = "XMODITS Commandline application"
description = "XMODITS command line application"
version = "0.11.0"
edition = "2021"
license = "LGPLv3"
repository = "https://github.com/B0ney/xmodits"
repository = "https://github.com/B0ney/xmodits-cli"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies.xmodits-lib]
git = "https://github.com/B0ney/xmodits-lib.git"
rev = "8d81d0c"
rev = "b72ca08"

[dependencies]
clap = { version = "4.3.11", features = ["derive", "cargo", "wrap_help"] }
Expand Down
8 changes: 4 additions & 4 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ use cli::Cli;
fn main() {
let mut cli = Cli::parse_from(wild::args());

if cli.info {
return api::info(cli);
}

let destination = match destination_dir(&mut cli.trackers) {
Ok(path) => path,
Err(e) => {
return eprintln!("{}", e);
}
};

if cli.info {
return api::info(cli);
}

#[cfg(windows)]
let no_exit_prompt = cli.no_exit_prompt;

Expand Down

0 comments on commit 7613c84

Please sign in to comment.