New versions of tera panic instead of returning Error when passed an invalid glob path. For example:
rsgen-avro
let mut tera = Tera::new("/dev/null/*")?;
Problem caused by use of unwrap() instead of ? operator, for example:
tera.rs
let parent_dir = std::fs::canonicalize(parent_dir).unwrap();
New versions of tera panic instead of returning Error when passed an invalid glob path. For example:
rsgen-avro
let mut tera = Tera::new("/dev/null/*")?;
Problem caused by use of unwrap() instead of ? operator, for example:
tera.rs
let parent_dir = std::fs::canonicalize(parent_dir).unwrap();