mirror of
https://github.com/Atsukoro1/ponyfetch.git
synced 2024-11-23 12:47:59 +01:00
fix: 🐛 Minor argument parser fix
This commit is contained in:
parent
1b799522c4
commit
ef2a1d1e6f
2 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ponyfetch"
|
name = "ponyfetch"
|
||||||
description="A cross-platform command-line interface (CLI) tool written in Rust to display system information in an aesthetically pleasing and entertaining manner. "
|
description="A cross-platform command-line interface (CLI) tool written in Rust to display system information in an aesthetically pleasing and entertaining manner. "
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
authors=["Atsukoro1"]
|
authors=["Atsukoro1"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
categories=["command-line-utilities"]
|
categories=["command-line-utilities"]
|
||||||
|
|
|
@ -110,7 +110,7 @@ impl Arguments {
|
||||||
}
|
}
|
||||||
|
|
||||||
if args.pony == "" {
|
if args.pony == "" {
|
||||||
args.pony = String::from("rainbowdash_large");
|
args.pony = String::from("derpy_large");
|
||||||
}
|
}
|
||||||
|
|
||||||
if args.help {
|
if args.help {
|
||||||
|
|
Loading…
Reference in a new issue