Skip to content
Snippets Groups Projects
Commit 56a183d2 authored by Simon Sapin's avatar Simon Sapin
Browse files

Make the tmp/ directory be part of the repo

parent 02aa4868
No related branches found
No related tags found
1 merge request!1Initial implementation
......@@ -181,9 +181,9 @@
exe.display()
)
})?;
let tmp_dir = repo.join("tmp");
fs::create_dir_all(&tmp_dir)?;
Ok(Self { tmp_dir })
Ok(Self {
tmp_dir: repo.join("tmp"),
})
}
fn main() -> Result<()> {
......
Directory for Megafine to write temporary files.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment