Skip to content

Commit

Permalink
Merge branch 'Release' into Development
Browse files Browse the repository at this point in the history
  • Loading branch information
pragma37 committed Oct 22, 2023
2 parents 85f60c0 + 981d983 commit 57ff5f2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/install_dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@
#Remove bin to avoid AVs false positives
for e in os.listdir(malt_dependencies_path):
if e.startswith('numpy') or e == 'bin':
shutil.rmtree(os.path.join(malt_dependencies_path, e))
path = os.path.join(malt_dependencies_path, e)
if os.path.isdir(path):
shutil.rmtree(path)
elif os.path.isfile(path):
os.remove(path)


#subprocess.check_call([sys.executable, os.path.join(current_dir, 'get_glslang.py')])

0 comments on commit 57ff5f2

Please sign in to comment.