Skip to content

Commit 73f53ab

Browse files
authored
Adding aarch64 neon support. (#379)
1 parent d92d7e5 commit 73f53ab

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/main.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,9 @@ fn main() -> anyhow::Result<()> {
109109

110110
let full_output_path = workdir.join(output_path);
111111

112+
let output_dir = full_output_path.parent().unwrap();
113+
std::fs::create_dir_all(output_dir)?;
114+
112115
if check {
113116
match std::fs::read_to_string(&full_output_path) {
114117
Ok(original_str) => {

0 commit comments

Comments
 (0)