Skip to content

Commit

Permalink
Try to fix dll issue
Browse files Browse the repository at this point in the history
  • Loading branch information
eliemichel committed Dec 5, 2020
1 parent ac4eb36 commit b188138
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
__pycache__/
builds/
/builds/
/releases/
2 changes: 1 addition & 1 deletion blender/MapsModelsImporter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
bl_info = {
"name": "Maps Models Importer",
"author": "Elie Michel",
"version": (0, 3, 4),
"version": (0, 3, 5),
"blender": (2, 82, 0),
"location": "File > Import > Google Maps Capture",
"description": "Import meshes from a Google Maps or Google Earth capture",
Expand Down
1 change: 1 addition & 0 deletions blender/MapsModelsImporter/google_maps.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ def captureToFiles(context, filepath, prefix, max_blocks):
os.environ["PYTHONHOME"] = python_home
os.environ["PYTHONPATH"] = os.environ.get("PYTHONPATH", "")
os.environ["PYTHONPATH"] += os.pathsep + os.path.abspath(getBinaryDir())
os.environ["PATH"] += os.pathsep + os.path.join(python_home, "bin")
try:
out = subprocess.check_output([python, SCRIPT_PATH, filepath, prefix, str(max_blocks)], stderr=subprocess.STDOUT)
if pref.debug_info:
Expand Down

0 comments on commit b188138

Please sign in to comment.