fix executable name

This commit is contained in:
Max Bradbury 2020-04-19 08:14:52 +01:00
parent 858a45f69d
commit 7a8ec4e5d2
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ use std::{env, fs};
fn main() {
let input_file = env::args()
.nth(1)
.expect("No input path specified. Usage: `smiley infile outfile`");
.expect("No input path specified. Usage: `bitsy-validate infile outfile`");
Game::from(fs::read_to_string(input_file).unwrap()).unwrap();