Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
Signed-off-by: Nikola Hristov <Nikola@PlayForm.Cloud>
  • Loading branch information
NikolaRHristov committed Jun 24, 2024
1 parent 3540706 commit 098b8ef
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Source/Fn/Binary/Command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pub fn Fn() -> ArgMatches {
Command::new("Run")
.version(env!("CARGO_PKG_VERSION"))
.author("PlayForm <hello@playform.cloud>")
.about("πŸΊβ€Run.")
.about("πŸΊβ€Run —")
.arg(
Arg::new("File")
.short('F')
Expand All @@ -15,7 +15,7 @@ pub fn Fn() -> ArgMatches {
.display_order(2)
.value_name("FILE")
.required(false)
.help("File."),
.help("πŸ“β€File —"),
)
.arg(
Arg::new("Parallel")
Expand All @@ -25,7 +25,7 @@ pub fn Fn() -> ArgMatches {
.display_order(3)
.value_name("PARALLEL")
.required(false)
.help("Parallel."),
.help("⏩ Parallel —"),
)
.arg(
Arg::new("Root")
Expand All @@ -34,7 +34,7 @@ pub fn Fn() -> ArgMatches {
.display_order(4)
.value_name("ROOT")
.required(false)
.help("Root.")
.help("πŸ“‚β€Root —")
.default_value("."),
)
.arg(
Expand All @@ -44,15 +44,15 @@ pub fn Fn() -> ArgMatches {
.display_order(5)
.value_name("EXCLUDE")
.required(false)
.help("Exclude.")
.help("πŸš«β€Exclude —")
.default_value("node_modules .git target dist vendor"),
)
.arg(
Arg::new("Pattern")
.display_order(6)
.value_name("PATTERN")
.required(true)
.help("Pattern.")
.help("πŸ”β€Pattern —")
.default_value("."),
)
.arg(
Expand All @@ -63,7 +63,7 @@ pub fn Fn() -> ArgMatches {
.required(true)
.allow_hyphen_values(true)
.allow_negative_numbers(true)
.help("Command."),
.help("πŸ–₯️ Command —"),
)
.get_matches()
}
Expand Down

0 comments on commit 098b8ef

Please sign in to comment.