diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-11-06 20:59:08 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-11-06 20:59:08 -0800 |
commit | 7dee40c6bb07f151a58eceaad38292b4a3e23ee5 (patch) | |
tree | f1e12b7b93aff5b77cad71ab6550c6506f42e6bf /emcc | |
parent | 517c66e69e217fca8bce1e0bc08d28448e0ee429 (diff) |
fix temp dir in emcc
Diffstat (limited to 'emcc')
-rwxr-xr-x | emcc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -533,7 +533,7 @@ if TEMP_DIR: shutil.rmtree(temp_dir) # clear it os.makedirs(temp_dir) else: - temp_root = os.path.join(shared.TEMP_DIR, 'emcc') + temp_root = shared.TEMP_DIR if not os.path.exists(temp_root): os.makedirs(temp_root) temp_dir = tempfile.mkdtemp(dir=temp_root) |