chore: Improve the gitignore

This commit is contained in:
Clément Renault 2018-12-02 12:43:48 +01:00
parent c8aee7ed7a
commit 0680f8f4cd
No known key found for this signature in database
GPG key ID: 0151CDAB43460DAE
2 changed files with 4 additions and 4 deletions

View file

@ -65,7 +65,7 @@ fn generate_update_from_csv(path: &Path) -> Result<(Schema, Update), Box<Error>>
fn main() -> Result<(), Box<Error>> {
let command = Cmd::from_args();
let path = random_name();
let path = random_name() + ".rdb";
println!("generating the update...");
let (schema, update) = generate_update_from_csv(&command.csv_file)?;