Compare commits

..

No commits in common. "3e86e4f05328497e59d98d808bef071b2984f73f" and "bbbfc924dea036e31801adc4c3de01981999e751" have entirely different histories.

2 changed files with 7 additions and 17 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "pride"
version = "0.1.2"
version = "0.1.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -8,30 +8,21 @@ mod flag;
use crate::color::Colors;
static VERSION: &str = env!("CARGO_PKG_VERSION");
fn main() {
let mut args = Arguments::from_env();
// handle help flag
if args.contains(["-h", "--help"]) {
let help = args.contains(["-h", "--help"]);
if help {
help_text();
return;
}
// handle list flag
if args.contains(["-l", "--list"]) {
let list = args.contains(["-l", "--list"]);
if list {
list_text();
return;
}
// handle version flag
if args.contains("--version") {
println!("pride v{VERSION}");
return;
}
// get small flag
let small = args.contains(["-s", "--small"]);
let subcommand = args.subcommand().unwrap();
@ -89,7 +80,7 @@ fn main() {
}
fn help_text() {
println!("pride v{VERSION}");
println!("pride v{}", env!("CARGO_PKG_VERSION"));
println!("Valerie Wolfe <sleeplessval@gmail.com>");
println!("Show pride flags in the terminal.\n");
@ -100,7 +91,6 @@ fn help_text() {
println!("flags:");
println!(" -h, --help Shows this help text");
println!(" --version Show version information");
println!(" -l, --list Prints a list of printable flags");
println!(" -s, --small Prints a small version without holding");