Skip to content

Commit b188138

Browse files
committed
Try to fix dll issue
1 parent ac4eb36 commit b188138

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
__pycache__/
2-
builds/
2+
/builds/
3+
/releases/

blender/MapsModelsImporter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
bl_info = {
2525
"name": "Maps Models Importer",
2626
"author": "Elie Michel",
27-
"version": (0, 3, 4),
27+
"version": (0, 3, 5),
2828
"blender": (2, 82, 0),
2929
"location": "File > Import > Google Maps Capture",
3030
"description": "Import meshes from a Google Maps or Google Earth capture",

blender/MapsModelsImporter/google_maps.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ def captureToFiles(context, filepath, prefix, max_blocks):
7272
os.environ["PYTHONHOME"] = python_home
7373
os.environ["PYTHONPATH"] = os.environ.get("PYTHONPATH", "")
7474
os.environ["PYTHONPATH"] += os.pathsep + os.path.abspath(getBinaryDir())
75+
os.environ["PATH"] += os.pathsep + os.path.join(python_home, "bin")
7576
try:
7677
out = subprocess.check_output([python, SCRIPT_PATH, filepath, prefix, str(max_blocks)], stderr=subprocess.STDOUT)
7778
if pref.debug_info:

0 commit comments

Comments
 (0)