rename dump to chorus_dump

This commit is contained in:
Mike Dilger 2024-03-22 06:50:13 +13:00
parent 585dda0cb8
commit c8b365f264

View File

@ -10,7 +10,7 @@ fn main() -> Result<(), Error> {
// Get args (config path)
let mut args = env::args();
if args.len() <= 1 {
panic!("USAGE: chorus <config_path>");
panic!("USAGE: chorus_dump <chorus_config_path>");
}
let _ = args.next(); // ignore program name
let config_path = args.next().unwrap();