Use full app name for better cli help text

This commit is contained in:
Michael Vines 2019-02-16 09:50:07 -08:00 committed by Grimes
parent 3548c6c43a
commit 83ac075b22
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ use solana_sdk::signature::read_pkcs8;
use std::io;
fn main() {
let matches = clap::App::new("fullnode-config")
let matches = clap::App::new("solana-fullnode-config")
.version(clap::crate_version!())
.arg(
clap::Arg::with_name("local")

View File

@ -126,7 +126,7 @@ fn main() {
solana_logger::setup();
solana_metrics::set_panic_hook("fullnode");
let matches = App::new("fullnode")
let matches = App::new("solana-fullnode")
.version(crate_version!())
.arg(
Arg::with_name("entry_stream")