Skip to content
Snippets Groups Projects
Commit d3221428 authored by Mick Jordan's avatar Mick Jordan
Browse files

mx_fastr_pkgs: fix missing create of tmpdir

parent 5564d9e9
No related branches found
No related tags found
No related merge requests found
......@@ -40,6 +40,7 @@ def _create_libinstall(s):
os.mkdir(libinstall)
install_tmp = join(s.dir, "install.tmp")
shutil.rmtree(install_tmp, ignore_errors=True)
os.mkdir(install_tmp)
test = join(s.dir, "test")
shutil.rmtree(test, ignore_errors=True)
os.mkdir(test)
......
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