fix: 🐛 Minor argument parser fix

This commit is contained in:
Atsukoro1 2022-12-06 09:44:28 +01:00
parent 1b799522c4
commit ef2a1d1e6f
2 changed files with 2 additions and 2 deletions

View file

@ -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"]

View file

@ -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 {